如何在使用Ember Data创建记录时创建嵌套/嵌入模型?具体来说,我想创建一个嵌套/嵌入模型作者的帖子模型。以下代码给出了错误:
处理路径时出错:索引断言失败:您无法将“未定义”记录添加到“post.author”。您只能在此关系中添加“作者”记录。错误:断言失败:您无法将“未定义”记录添加到“post.author”。您只能在此关系中添加“作者”记录。
App.IndexRoute = Ember.Route.extend({
model: function() {
return this.store.createRecord('post', {
title: 'My first post',
body: 'lorem ipsum ...',
author: {
fullname: 'John Doe',
dob: '12/25/1999'
}
});
}
});
App.Post = DS.Model.extend({
title: DS.attr('string'),
body: DS.attr('string'),
author: DS.belongsTo('author')
});
App.Author = DS.Model.extend({
fullname: DS.attr('string'),
dob: DS.attr('string')
});
关于如何做到这一点的任何想法?我还在JSBin上创建了一个演示:http://emberjs.jsbin.com/depiyugixo/edit?html,js,console,output
谢谢!
答案 0 :(得分:2)
需要将关系分配给实例化模型,普通对象不起作用。
App.IndexRoute = Ember.Route.extend({
model: function() {
return this.store.createRecord('post', {
title: 'My first post',
body: 'lorem ipsum ...',
author: this.store.createRecord('author', {
fullname: 'John Doe',
dob: '12/25/1999'
})
});
}