我正在使用Ember Data 1.13.7和Ember 1.13.6与ActiveModelSerializer和EmbeddedRecordsMixin。
我有2个型号:
// models/post.js
export default DS.Model.extend({
//bunch of attrs
commentStuff: DS.belongsTo('commentStuff', {async:true})
}
和
//models/comment-stuff.js
export default DS.Model.extend({
//bunch of attrs
post: DS.belongsTo('post', {async: true))
}
在我的序列化程序中
export default DS.ActiveModelSerializer.extend(DS.EmbeddedRecordsMixin, {
isNewSerializerAPI: true,
attrs: {
commentStuff: {serialize: 'records', deserialize: 'ids'}
},
keyForAttribute(attr){
if(attr === 'commentStuff'){
return 'comment_stuff_attributes';
} else {
return this._super(attr);
}
}
});
当我编辑现有记录然后post.save()
但是当我用以下内容创建新记录时,这非常有效:
var post = this.store.createRecord('post');
post.commentStuff = this.store.createRecord('commentStuff');
然后填写他们各自的属性。在post.save()
上发送到服务器的json没有显示commentStuff
个属性,只返回null
。
{post: {
attribute1: 'whatever',
attribute2: 'smth',
attribute3: 4,
comment_stuff_attributes: null}
}
我应该采用不同的方式保存/创建新记录吗?
答案 0 :(得分:1)
您应该使用.set
和.get
方法。不是post.commentStuff =
,而是post.set('commentStuff',
。