前提・実現したいこと
投稿に対するコメント(showページ)に対してページネート したいのですが、エラーが出てしまい解決策がわかりません。ご教示頂けますと幸甚です。
NoMethodError in Comments#create undefined method `total_pages' for
該当のソースコード
controller
1 def show 2 @problem = Problem.find(params[:id]) 3 @comment = Comment.new 4 @comments = @problem.comments 5 @comments = @comments.page(params[:page]).reverse_order.per(5) 6 end
rb
1class Problem < ApplicationRecord 2 belongs_to :customer 3 belongs_to :category 4 has_many :comments, dependent: :destroy 5 6class Comment < ApplicationRecord 7 belongs_to :problem 8 belongs_to :customer
show
1 2 <%= paginate @comments %> 3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。