【发布时间】:2015-09-24 18:25:00
【问题描述】:
我正在尝试在我的模板中使用Ember.Select。 Ember.Select 没有任何属性 |特性。但是当我指定一个属性内容时,它会给我错误
Uncaught Error: assertion failed: an Ember.CollectionView's content must implement Ember.Array. You passed countries
我的徽章模板如下,
Ember.Select // Works fine
Ember.Select content=countries //Gives the listed error
App.IndexController 中的代码是,
countries : function () {
return ["India","US","England"]; // I have also tried passing the value in Ember.A(array_val)
}.property('')
【问题讨论】: