ruby-on-rails – 如何分页Rabl的收藏

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何分页Rabl的收藏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个模板:
# app/views/posts/index.rabl
collection @posts => :posts
attributes :id,:title,:subject
child(:user) { attributes :full_name }
node(:read) { |post| post.read_by?(@user) }

女巫返回:

{
    "posts": [
        {
            "post": {
                "id": 5,"title": "...","subject": "...","user": {
                    "full_name": "..."
                },"read": true
            }
        }
    ]
}

我想添加一些分页参数来渲染这个:

{
    "posts": [
        {
            "post": {
                "id": 5,"read": true
            }
        }
    ],"total": 42,"total_pages": 12
}

有任何想法吗?非常感谢!

解决方法

对于我的noob问题,对话是由README回答的.以下是分页的一个例子:
object false

node(:total) {|m| @posts.total_count }
node(:total_pages) {|m| @posts.num_pages }

child(@posts) do
  extends "api/v1/posts/show"
end

注意:我正在使用Kaminari进行分页.

原文链接:https://www.f2er.com/ruby/271788.html

猜你在找的Ruby相关文章