2
2

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 1 year has passed since last update.

[Rails7]kaminariを実装するときに起きたエラーと対処法

Last updated at Posted at 2023-01-27

エラー1つ目

こちらの記事を参考にpagenate機能を実装しようとしていたところ、undefined method `page' for #<User::ActiveRecord_Relation...というエラーがでてしまい、ググって直してみたが直らなかった。そこで再起動してみたら、行けた。
kaminariを実装するときは再起動をしましょう。

エラー2つ目

先ほどの記事の

def index
 @boards = Board.all.includes(:user).order(created_at: :desc).page(params[:page])
end

のところでこのまま実装するとページネーションができなかったが、

includes(:user)

を消したら行けた。理由は分からない。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?