我正在尝试从后端加载一些 JSON 并启动一个模型。到目前为止,我想我得到了模型,但没有设置它的属性:(
这是我的测试代码:
window.App = Ember.Application.create();
App.Router.map(function() {
this.resource('person', { path: '/people/:person_id' });
});
App.Adapter = DS.RESTAdapter.extend({
namespace: '~user1/embertest'
});
App.Store = DS.Store.extend({
revision: 11,
adapter: App.Adapter,
});
var attr = DS.attr;
App.Person = DS.Model.extend({
firstName: attr('string'),
lastName: attr('string')
});
App.PersonRoute = Ember.Route.extend({
model: function(params) {
return App.Person.find(params) ;
}
});
App.PersonController = Ember.Controller.extend({
contentDidChange: function() {
debugger ;
console.info(this.get('content'));
}.observes('content.isLoaded')
}) ;
并且数据是从一个仅包含以下内容的 json 文件加载的:
{"persons": {"firstName": "Jeff","lastName": "Atwood"}}
现在,使用 url localhost/~user/embertest.html#people/10 我看到数据被加载并且控制器方法contentDidChange被调用。但是当我这样做时
this.content.get("firstName") ; // or this.get("content").get("firstName")
它返回“未定义”。这里出了什么问题?
最后,这是我的模板,它们位于:
<script type="text/x-handlebars" data-template-name="person">
Person: {{content.firstName}}
</script>
<script type="text/x-handlebars" data-template-name="application">
{{outlet}}
</script>
干杯