我有很多人将我的余烬应用升级到任何版本的最新版本,但升级后,我的应用仍无法正常工作。
我已经简化了很多,归结为我的路线。我的路线是这样的(如过渡指南中所建议的那样):
App.BoxesRoute = Ember.Route.extend({
model: function(){
return this.store.find('box');
}
});
非常简单,没有什么是错的,对吧? 我的模型看起来像这样:
App.Box = DS.Model.extend({
enabled: DS.attr('boolean'),
updatedAt: DS.attr('date'),
boxMeters: DS.hasMany('App.BoxMeter')
});
App.BoxMeter非常相似,但关键是在升级到1.0.0之前所有这些都有效。
我脸上抛出了几个错误。他们是:
Assertion failed: No model was found for 'App.Box' ember.js?body=1:394
Error while loading route: TypeError {} ember.js?body=1:394
Uncaught TypeError: Cannot set property 'store' of undefined
对我来说没有任何意义。我无数次地看过路线和模型,这只是......很奇怪!我应该怎么解决这个问题?
答案 0 :(得分:19)
尝试替换此行:
boxMeters: DS.hasMany('App.BoxMeter')
with:
boxMeters: DS.hasMany('boxMeter')