我正在使用 Ember Data 定义两个模型以及两者之间的关联,然后使用 createRecord 方法插入一些数据。不涉及关联的属性存在于模型和 gettable 中(它们返回正确的值),但对关联内容的调用会返回一个空数组。我究竟做错了什么?
编辑:所以使用load
而不是createRecord
现在给出[3,3]的数组,我仍然无法访问属性。我能得到的最接近的是: b.get("messages").get("firstObject").id
,它返回字符串 "[object Object]"
// Store
App.store = DS.Store.create({
revision: 6,
adapter: App.adapter
});
// Models
App.Message = DS.Model.extend({
msg: DS.attr('string'),
time: DS.attr('string'),
chat: DS.belongsTo('App.Chat')
});
App.Chat = DS.Model.extend({
name: DS.attr('string'),
avatar: DS.attr('string'),
messages: DS.hasMany('App.Message', { embedded: true }),
preview: function() {
this.get('messages').firstObject;
}.property('messages')
});
var a = App.store.createRecord(App.Chat, { "id": 1,
"name": 'Foo Bar',
"avatar": 'test',
"messages": [{
"id": 1,
"msg": 'This is a test post one two three',
"time": '1:10pm'
},{
"id": 2,
"msg": ' This is another test post three two one',
"time": '1:15pm'
}]
});
var b = App.store.find(App.Chat, 1);
console.log(b.get("name")) // Foo Bar
console.log(b.get("messages").get("content")) // [] (an empty array)