LoginSignup
0
0

More than 5 years have passed since last update.

will_paginate to kaminari

Posted at

概要

  • will_paginateとkaminariが混在しているのでkaminariに寄せたい

対応

will_paginateの.paginateが使われている部分をkaminariの.page.perなどに書き換える

Hoge.paginate(page: params[:page], per_page: PER_PAGE)

# ↓

Hoge.paginate.page(params[:page]).per(PER_PAGE)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0