由于某些原因,我很难将will_paginate gem与我的rails博客应用程序一起使用。我的文章在我的索引上完美地分页。我试图在我的文章显示页面上对我的评论进行分页。我没有收到错误,并且显示了下一页和上一页的链接,但是当我点击下一页时它们只会停留在第一页的注释中它不会转到下一页,如果这样做的话。下面是我的文章控制器和显示视图。任何帮助都是值得赞赏的。谢谢!
@comments = @article.comments.paginate(:page => params[:page], :per_page => 2)
<%= will_paginate @comments, renderer: BootstrapPagination::Rails %>
def show
@article = Article.find(params[:id])
@comments = @article.comments.paginate(:page => params[:page], :per_page => 2)
@tags = Tag.all
@categories = Category.all
end
def index
@articles = Article.paginate(:page => params[:page], :per_page => 5).order("created_at desc")
@tags = Tag.all
@categories = Category.all
end
<%= will_paginate @comments, renderer: BootstrapPagination::Rails %>
<%= render @article.comments %>