追踪被序列化为json的对象列表

时间:2013-08-15 11:05:20

标签: ruby-on-rails

我的gemfile中有“更好的错误”,而且我的控制器中的这个非常标准的索引操作

def index

  @posts = Post.scoped
  @posts = PaginatingDecorator.decorate(@Posts, with: Admin::PostDecorator)

  respond_to do |format|
    format.html
    format.json { render json: @posts}
  end
end

我想看看,引擎盖下的内容是什么,而@posts被序列化为JSO。我的意思是我想逐步分析它的路径,按方法分析。

修改

当然我正在使用ActiveRecord Serializers,它真的是关于它的。

0 个答案:

没有答案