我正在使用 Ember,以下代码从 api.php 脚本获取 JSON 并在模板上显示结果。我的问题是为什么当我将 getJSON 函数更改为使用 .done() 而不是 .then() 时脚本会中断?我收到以下错误:
:未捕获的错误:断言失败:Ember.CollectionView 的内容必须实现 Ember.Array。你通过了 [object Object] 。
如果我在函数期间记录 response.items 对象,我会在控制台中得到相同的结果,所以我很好奇 Ember 如何以不同的方式解释这一点。
App.IndexRoute = Ember.Route.extend({
model: function() {
return App.Item.all();
}
});
App.Item = Ember.Object.extend();
App.Item.reopenClass({
all: function() {
return $.getJSON("api.php").then(function(response) {
var items = [];
response.items.forEach( function (item) {
items.push( App.Item.create(item) );
});
return items;
});
}
});