Mongoid pagination

后端 未结 8 644
無奈伤痛
無奈伤痛 2021-02-05 12:01

I tried

@posts = Post.page(params[:page]).per_page(10)

and

@posts = Post.paginate(:page => 1, :per_page => 10)    
         


        
8条回答
  •  無奈伤痛
    2021-02-05 12:38

    Use the following gem.

    Very helpful.

    https://github.com/lucasas/will_paginate_mongoid

提交回复
热议问题