我突然在我的Ember应用程序中收到此错误。什么都没有出现:
DEPRECATION: Action handlers contained in an `events` object are deprecated in
favor of putting them in an `actions` object (error on <Ember.Route:ember###>)
Error while loading route: TypeError {}
Uncaught TypeError: Object function () {
...
}
Uncaught ReferenceError: remoteWindow is not defined
答案 0 :(得分:0)
可能是由于Ember Data在2013年9月更新到最新的1.0版本。所以你必须使用
this.store.find('model');
而不是
App.Model.find();
And make more changes based on this document
在控制器see this SO Q&A中添加actions
。