在json对象中使用ActiveModelSerializer-Rails

时间:2018-12-14 20:28:05

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

说我有一个#index动作,应该返回一个json对象,像这样:

def index
  ...
  @posts = Post.where(something: true)
  render json: {
    posts: @posts,
    time_stamp: Time.now,
  }
  ...
end

在这种情况下,是否可以将each_serializer用于@posts?我遇到的所有例子都处理过

render json: @posts, each_serializer: PostSerializer

0 个答案:

没有答案