0

我创建了一个应用程序,用户可以在其中创建项目并对这些项目发表评论。现在,我可以让用户在每个项目页面上发表评论。

问题:根据我下面的代码,我可以使用 will_paginate 吗?我确实安装了 gem,所以,如果是这样,我将如何将它集成到下面的代码中?如果没有,我需要做什么来建立分页?

评论.rb

class Comment < ActiveRecord::Base
  attr_accessible :content, :project_id, :user_id
  validates :content, presence: true

  belongs_to :project
  belongs_to :user

  scope :newest, order("created_at desc")
end

评论控制器.rb

class CommentsController < ApplicationController
  before_filter :authenticate_user! 

  def create
    project = Project.find(params[:project_id])
    @comment = project.comments.create!(params[:comment])
    redirect_to project_path(project)
  end
end

项目/show.html.erb

        <!-- Add Comments -->

          <% if signed_in? %>
            <p class="comment_header">Add Comment:</p>

            <span class="comment">
                <%= form_for([@project, @project.comments.build]) do |f| %>
                  <div class="field">
                    <%= f.text_area :content, :class => "span7", :rows => "3" %>
                  </div>

                  <%= f.hidden_field :user_id, :value => current_user.id %>

                  <div class="actions">
                    <%= f.submit "Add Comment", :class => "btn btn-header" %>
                  </div>
                <% end %>
            </span>

          <% else %>

            <p class="comment_header"><%= link_to 'Sign in', new_user_session_path %> to post comments.</p> 

          <% end %>

          <!-- Show Comments -->
          <p class="comment_header">Comments:</p>

          <% if @project.comments.blank? %>     
            <p>No comments made yet for this project.</p>        
          <% else %>        
            <% @project.comments.newest.each do |comment| %>   
              <div class="comments">        
                <p><%= comment.content %></p>
                <span>By <%= link_to comment.user.name, comment.user %> <%= time_ago_in_words(comment.created_at) %> ago</span>
              </div>
            <% end %>       
          <% end %>
          <!-- end of comments section -->
4

4 回答 4

2

是的,您可以使用 will_paginate gem。此 gem 仅用于获取具有页码的行数,您可以指定每页的元素数。例如第 1 页将为您提供元素 1 到 30 第 2 页 31 到 60 .... 在您必须实现视图之后

于 2013-04-23T08:30:09.527 回答
0

您可以毫无问题地使用 will_paginate。你也可以看看更灵活的kaminari 。

于 2013-04-23T08:31:17.577 回答
0

您没有will_paginate正确实施。(您可以在此处的文档中阅读有关正确实施的信息。

简而言之,您需要@comments = @project.comments.paginate(page: params[:page])在控制器中使用类似的东西来执行索引操作,然后遍历@comments. 然后做will_paginate @comments应该正常工作。

您不能只will_paginate @user.comments.newest在视图中执行查询 ( ),因为该paginate方法返回一个处理分页的特殊对象,这与普通的 ActiveRecord 查询不同。

于 2013-04-23T08:48:56.060 回答
0

您可以在重定向之前调用分页方法

在你的控制器中

  @comments = @project.comments.pagenate(page: params[:page]||1,per_page: 20)

并将以下内容添加到您的模板中

  <%= will_paginate @comments %>
于 2013-04-23T08:47:13.023 回答