我的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,它真的是关于它的。