我正在尝试将 Ember-Brunch(原始存储库:https ://github.com/icholy/ember-brunch )更新为最新的 EmberJS 和 EmberJS-Data 框架。我目前遇到的问题是我正在尝试将原始 Bob 模型转换DS.Model
为DS.FixtureAdapter
在DS.Store
. 但无论我尝试什么,我都会遇到让数据显示的问题。这里有几个尝试:
随着路线:
App.BobRoute = Ember.Route.extend({
model: function() {
return App.Bob.find();
}
});
我收到以下错误:
未捕获的 TypeError:无法调用 null 的方法“hasOwnProperty”
如果我切换到这条路线:
App.BobRoute = Ember.Route.extend({
setupController: function() {
App.BobController.set('content', App.Bob.find());
}
});
我收到以下错误:
未捕获的类型错误:对象 App.BobController 没有方法“设置”app.js:184 未捕获的类型错误:无法调用 null 的方法“hasOwnProperty”
有任何想法吗?
您可以查看我当前的工作https://github.com/seankeating/ember-brunch以及我在 DS.Model-Implementation-For-Using-Local-DSStore 分支中的尝试。
店铺:
App.Store = DS.Store.extend({
revision: 11,
adapter: DS.FixtureAdapter.create()
});
控制器:
App.BobController = Em.ObjectController.extend({
});
模型:
var App = require('app'),
attr = DS.attr;
App.Bob = DS.Model.extend({
firstName : attr('string'),
lastName : attr('string'),
lyrics : attr('string'),
fullName: function(){
return this.get('firstName') + ' ' + this.get('lastName');
}.property('firstName', 'lastName')
});
App.Bob.FIXTURES = [{
firstName: 'bob',
lastName: 'marley',
lyrics: 'no woman no cry!'
}];
模板:
<h2>{{fullName}}'s page!</h2>
<button class="btn btn-success" {{action doClick target="view"}}>click me</button>
{{#linkTo home}}<button class="btn" {{action doHome}}>go back home</button>{{/linkTo}}