活动模型序列化器在一个模板中的多个集合

时间:2014-04-16 12:39:05

标签: ruby-on-rails active-model-serializers

我有这个自定义操作,我希望保存http旅行以使用。

检索不同的集合
def dashboard
  @projects = Project.all
  @tasks    = Task.all

  respond_do do |format|
    format.json {render {projects: @project, tasks: @tasks}, serializer: DashboardSerializer }
  end
end

class DashboardSerializer < ActiveModel::Serializer
  attributes :proejcts, :tasks

end

这给我一个像这样的错误

 undefined method `read_attribute_for_serialization' for #<Hash:0x007fb5d58108c0>

有什么方法可以像在Rabl中那样在活动模型序列化模板中创建任意集合属性?

谢谢!

1 个答案:

答案 0 :(得分:1)

AMS区分单项序列化和项目集合序列化。

我得到了同样的错误,我的解决方案看起来像这样:

 render json: @posts, each_serializer: FancyPostSerializer