0

我正在使用 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)
4

1 回答 1

0

看起来支持 {embedded: true}不久前被删除,这就是为什么这不起作用的原因。有一个当前待处理的拉取请求(有效)将恢复此功能。

https://github.com/emberjs/data/pull/428

于 2012-10-23T07:13:36.500 回答