4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Rails】 Kaminariを使ってページネーションの実装手順

Last updated at Posted at 2019-10-24

環境

Rails 5.2.3
Ruby 2.6.5

実装済みイメージ

Screen Shot 2019-10-25 at 9.12.53.png

手順

Gemをインストール

Gemfile.rb
gem 'kaminari'
terminal
$ bundle

ページ数を指定する

方法1:モデルで設定します。
app/models/blog.rb
class Blog < ActiveRecord::Base
  paginates_per 10
end
app/controllers/blogs_controller.rb
class BlogsController < ApplicationController
  def index
    @blogs = @blogs.page(params[:page])
  end
end
方法2:コントローラーで設定します。
app/controllers/blogs_controller.rb
class BlogsController < ApplicationController
  PER = 10

  def index
    @blogs = Blog.page(params[:page]).per(PER)
  end
end

Viewを編集する

app/view/blogs/index.html.erb
<%= paginate @blogs %>

日本語化する

config/locales/ja.yml
ja:
  views:
    pagination:
      first: "&laquo; 最初"
      last: "最後 &raquo;"
      next: "次 &rsaquo;"
      previous: "&lsaquo; 前"
      truncate: "&hellip;"

Bootstrap 4を導入する

以下のコマンドを実行すると、viewファイルを自動的に作成します。
erb以外にhamlとslimも指定できます。

terminal
$ rails g kaminari:views bootstrap4 -e erb
Screen Shot 2019-10-25 at 9.20.33.png

 参考文献

https://github.com/kaminari/kaminari
https://github.com/amatsuda/kaminari_themes

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?