活动管理导轨中的分页计数问题

时间:2018-11-04 09:05:52

标签: ruby-on-rails pagination activeadmin will-paginate kaminari

我正在使用Active admin,并且正在尝试为我的一张桌子添加分页

  paginated_collection(histories.page(params[:page]).per(5), download_links: false) do
        table_for collection do
          column ('Status') { |bh| bh.status.humanize }
          column ('Reason') { |bh| bh.reason }
          column ('Date') { |bh| bh.created_at }
        end
      end

我添加了一个模块,因为will_paginate和kaminari之间存在冲突(参考:https://tech-brains.blogspot.com/2012/11/kaminari-willpaginate-incompatibility.html

在分页链接中它显示无效计数,如下图所示(该表共有6条记录,而我每页已分页5条记录,在第一页链接中显示(1-6),在第二页链接中显示( 6-11)),

enter image description here Total count in the page is only 6 but it displays wrong count

0 个答案:

没有答案