为什么我得到"未捕获的ReferenceError:remoteWindow未定义"

时间:2013-09-09 21:55:59

标签: ember.js

我突然在我的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 

1 个答案:

答案 0 :(得分:0)

1。

可能是由于Ember Data在2013年9月更新到最新的1.0版本。所以你必须使用

this.store.find('model');

而不是

App.Model.find();

And make more changes based on this document

2

在控制器see this SO Q&A中添加actions