Kaminari undefined method `page' with Rails 4.2

你离开我真会死。 提交于 2019-12-08 03:59:33

Due to an issue with will_paginate and rails_admin I had this in my codebase causing the page method to be renamed to per_page_kaminari.

I have realized this late and fixed.

Kaminari.configure do |config|
  config.page_method_name = :per_page_kaminari
end

Have a look at this tutorial https://github.com/amatsuda/kaminari

This is how it works

 User.page(page_number).per(records_per_page)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!