0

which is best gem package for pagination. I am using will_paginate buts its previous and next button are not working. Do you have any idea about it ??

    def client_info   
    sleep 2
    @clinet = BuyerInfo.paginate(page: params[:all], per_page: 2).order("id")
    #@clinet = BuyerInfo.all   
  end
4

2 回答 2

0

您可以使用kaminari,但您当前的实现可能是错误的。

您应该使用 page: params[:page] 或您在视图中的 will_paginate 调用中明确声明的任何参数“字段”。

params[:all] 保留什么值?

于 2013-04-30T05:33:05.467 回答
0

您可以将will_paginage-bootstrap与 will-paginate gem 一起使用以进行正确的引导布局。

于 2013-04-30T06:07:59.993 回答