我无法embedded
hasMany
正确使用 ember 数据。
我有这样的东西
App.Post = DS.Model.extend({
comments: DS.hasMany('App.Comment')
});
App.Comment = DS.Model.extend({
post: DS.hasMany('App.Post'),
name: attr('string')
});
我的 API 返回以下内容GET /post
:
[
{
id: 1
comments: [{name: 'test'}, {name: 'test2'}]
},
...
]
我需要发送这个POST /post
:
[
{
comments: [{name: 'test'}, {name: 'test2'}]
},
...
]
我想使用 Ember 模型并让他们提出适当的请求:
var post = App.store.createRecord(App.Post, hash_post_without_comments);
post.get('comments').createRecord(hash_comment);
App.store.commit(); // This should call the POST api
和
var posts = App.store.find(App.Post); // This should call the GET api
当我尝试类似的东西post: DS.hasMany('App.Post', {embedded: true})
时,GET 正在工作,但 POST 正在尝试为这两条记录创建一个 POST,而不仅仅是父记录。
编辑:我的真实用例
1-我刚刚从 master 构建了 ember 数据
2-我的适配器:RESTAdapter
3- 序列化器:JSONSerializer
4-我添加了
App.MyAdapter.map('App.Join', {
columns: { embedded: 'always' }
});
5- 我的模型是:
App.Join = DS.Model.extend({
rowCount: DS.attr('number'),
columns: DS.hasMany('App.JoinColumn'),
});
App.JoinColumn = DS.Model.extend({
join: DS.belongsTo('App.Join')
});
6- 何时:
var a = App.Join.find(1);
a.get('columns').createRecord({});
App.store.commit();
joincolumn 的 POST 已发送且父级不脏
我错过了什么?