我知道Ember-Data应该与设计的Active Model Serializer兼容,但它们似乎与序列化嵌入式ID的has_many关系不合时宜.
例如,序列化器
class PostSerializer < ActiveModel::Serializer embed :ids has_many :comments end
生成JSON
{ "post": { "comment_ids": [...] } }
但是Ember Data中的默认配置,
App.Post = DS.Model.extend({ DS.hasMany('App.Comment'),}); App.Comment = DS.Model.extend();
期望将评论关联序列化为注释:[…]不带_ids后缀(参见the relationships sub-section of the REST adapter section of the Ember.js guide).
我尝试了以下作为解决方法:
class PostSerializer < ActiveModel::Serializer attribute :comments def comments object.comment_ids end end
它有效,但添加了embed:ids,:include =>因为AMS不知道它是一个关联,所以为了启用侧载现在什么都不做.
编辑:我正在使用active_model_serializers(0.6.0)gem和Ember-Data修订版11
解决方法
对于ember-data 1.0.0-beta.3,我最终使用了这个:
App.ApplicationSerializer = DS.ActiveModelSerializer.extend({});
如下所述:Transition Guide
工作得非常好!