Ember序列化程序不使用Rails 4.2

时间:2015-01-09 02:41:48

标签: ruby-on-rails ember-data active-model-serializers ruby-on-rails-4.2

更新到Rails 4.2,现在我不能在我的生活中让ActiveModel :: Serializer配置正常工作。

ActiveModel::Serializer.setup do |config|
  config.embed = :ids
  config.embed_in_root = true
end

以前,这适用于:

respond_with @thing

4.2(和0.9.2 AMS),您必须说:

respond_with @thing, root: true

明确。任何人都明白为什么全局embed_in_root配置不再有效?

1 个答案:

答案 0 :(得分:1)

我遇到了同样的麻烦......

似乎活动模型序列化程序0.9.2与Rails 4.2不兼容。

我认为您的情况可能会发生在您打电话时:

respond_with @thing, root: true 

您根本没有使用Active Model Serializers gem。我通过在我的活动模型序列化程序中添加自定义属性来测试它,如下所示:

class ThingSerializer < ActiveModel::Serializer
  attributes :this_is_a_test

  def this_is_a_test
      "and it does not work"  
  end                       

end

我的JSON中this_is_a_test attribute没有出现,所以我意识到活动模型序列化器没有被使用。

我跟着igagnidz并将其添加到我的应用程序控制器:

def _render_with_renderer_json(json, options)
  serializer = build_json_serializer(json, options)

  if serializer
    super(serializer, options)
  else
    super(json, options)
  end

end

这就是我最终通过它:https://github.com/rails-api/active_model_serializers/issues/641