検索して検索しましたが、何も問題を解決しませんでした。これが私のコントローラーです:
def show
@topic = Topic.find(params[:id])
@topic.posts = @topic.posts.page(params[:page]).per(2) # 2 for debugging
end
トピックビューが2つの投稿に縮小されるため、これは問題なく機能します。ただし、これをshow.html.erbに追加すると、次のようになります。
<%= paginate @topic.posts %>
このエラーが発生しました:
undefined method `current_page' for #<ActiveRecord::Relation:0x69041c9b2d58>