createRecord不填充关联

时间:2012-10-23 02:53:11

标签: ember.js

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

1 个答案:

答案 0 :(得分:0)

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

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