我有一个标准will_paginate
,但我想要一个按钮来加载更多评论,比如Instagram。我搜索了很多解决方案,但我无法将其应用到我的项目中。
文章/ index.html.erb
<% @posts.each do |post| %>
<p><%= pluralize(post.comments.count, "Comment") %></p>
<div id="comid_<%= post.id %>"></div>
<div id='comments'>
<% @comments = post.comments.paginate(:per_page => 10, :page => params[:page]).order("created_at DESC") %>
<%= render @comments %>
<%= will_paginate @comments, :class =>"pagination" %>
</div>
Github my instagram_clone
Heroku my instagram_clone