您好我正在使用act_as_api渲染我的xml和json,一切都很好,直到我想将will_paginate字段添加到我的输出中。
有人有成功吗?
答案 0 :(得分:0)
在acts_as_api gem
的一个功能请求中找到解决方案 format.xml { render_for_api :template,
:xml => @posts ,
:root => :posts,
:meta => {:current_page => @posts.current_page,
:total_pages => @posts.total_pages,
:per_page => @posts.per_page }}
所以你有它,有了meta支持,你可以添加你想要的任何东西,在这种情况下我想要我的分页数据。
答案 1 :(得分:0)
截至今天,github上有关于此主题的wiki条目: