Domanda

ho questo template:

# app/views/posts/index.rabl
collection @posts => :posts
attributes :id, :title, :subject
child(:user) { attributes :full_name }
node(:read) { |post| post.read_by?(@user) }

torna Witch:

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

E vorrei aggiungere di aggiungere alcuni params paginazione al fine di rendere questo:

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

Tutte le idee? Molte grazie!

È stato utile?

Soluzione

Ci dispiace per la mia domanda niubbo, tuute le è stato risposto dal README. Ecco un esempio di impaginazione:

object false

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

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

. Nota: sto usando Kaminari per impaginazione

Altri suggerimenti

Durante la ricerca di kaminari e rabl questa è la prima e praticamente solo risultato rilevante. Come tale, vorrei lasciare qui una soluzione secondo il HAL Specification che genera link come questo .

Quindi, prima, iniziare con la vista:

# api/v1/posts/index.rabl
object false

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

node(:_links) do
  paginate @posts
end

Poi procedere per definire il metodo paginate:

# app/helpers/api_helper
module ApiHelper
  def paginate(collection)
    current_page_num = collection.current_page
    last_page_num = collection.total_pages

    {
      :first => first_page,
      :previous => previous_page(current_page_num),
      :self => current_page(current_page_num),
      :next => next_page(current_page_num, last_page_num),
      :last => last_page(last_page_num)
    }
  end

  def first_page
    { :href => url_for(:page => 1) }
  end

  def previous_page(current_page_num)
    return nil if current_page_num <= 1
    { :href => url_for(:page => current_page_num-1) }
  end

  def current_page(current_page_num)
    { :href => url_for(:page => current_page_num) }
  end

  def next_page(current_page_num, last_page_num)
    return nil if current_page_num >= last_page_num
    { :href => url_for(:page => current_page_num+1) }
  end

  def last_page(last_page_num)
    { :href => url_for(:page => last_page_num) }
  end
end

E, infine, includere l'aiutante nei controllori necessarie. L'aiutante potrebbe essere incluso in un Api::BaseController, da cui tutti i controllori API ereditano:

helper :api

non avrei potuto fare questo senza Zag zag .. 's soluzione, così .. Grazie mille!

nota, per will_paginate 3.0.0 le seguenti opere:

node(:total) {|m| @posts.total_entries }
node(:total_pages) {|m| (@posts.total_entries.to_f / @posts.per_page).ceil }
node(:page_num){|m| @posts.current_page}

Questo potrebbe essere quello che state cercando;)

object false
node :comments do
  partial('posts/index', object: @posts)
end

node(:pagination) do
  {
    total:@posts.count,
    total_pages: 20
  }
end
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top