我正在尝试加载一些数据,但出现此错误:
Uncaught Error: Attempted to handle event `loadedData` on <App.Person:ember295:1q697> while in state rootState.loaded.created.inFlight. Called with undefined
加载是这样发生的:
App.then(function(){
App.mystuff = ['Nina', 'Paul', 'Zoe'];
App.mystuff.forEach(function(item){
console.log("this is the item:");
console.log(item)
var p = App.Person.createRecord({name: item})
p.save(); // just save on LS Adapter
});
console.log("Were they added?");
console.log(App.Person.find());
});
您可以在这个 JSbin中看到该应用程序。你知道如何解决吗?
基本上我想知道如何App.Person.find()
在控制台和代码中工作。到目前为止,我在任何地方都没有得到结果。
可能相关。