will_paginate评论部分不呈现?

时间:2016-01-15 07:37:46

标签: html ruby-on-rails collections rubygems will-paginate

我正在按照维基上的说明获取此宝石:

https://github.com/mislav/will_paginate/wiki

它适用于我的列表控制器:/我能够让他们分页,但我不知道如何让它与我的评论一起工作。我的评论控制器没有show方法。

class CommentsController < ApplicationController
  before_action :authenticate_user!, :except => [:show]
  def create
    @comment = Comment.new(params[comment_params])
    @comment.listing_id = params[:listing_id]
    @comment.user_id = current_user.id
    @comment.body = params[:comment][:body]
    if @comment.save
      flash[:success] = "Comment Successful."
      redirect_to listing_path(@comment.listing)
    else
      flash[:alert] = "Comment Failed."
    end
  end
  def destroy
    @comment = @listing.comments.find(params[:id])
    @comment.destroy
    flash[:success] = "Comment Removed."
    redirect_to listing_path(@listing)
  end
  private
  def comment_params
    params.require(:comment).permit(:user, :body)
  end
end

这是我在ListingsController中的show方法:

def show
   @comment = Comment.new
   @comment.listing_id = @listing_id
end

这是根据我的理解设置评论的原因

这是listing / show.html.erb文件提供评论的部分:

<div class="commentblock">
  <div class="text-left">
    <%= render partial: 'comments/form' %>
    <%= render partial: 'listings/comment',  collection: @listing.comments.reverse %>
  </div>
</div>

我知道ruby代码的第一部分实际上是渲染表单,但我不了解集合部分的工作方式或内容,以及如何将分页应用于此。

列表/评论文件如下所示:

<div class="panel panel-default">
  <div class="panel-heading"><%= comment.user.username %>: <%= time_ago_in_words(comment.created_at)%> ago</div>
  <div class="panel-body">
    <%= comment.body %>
  </div>
</div>

我已经尝试了很多东西,但我仍然无法在代码中找到改变的位置或改变内容。我进入了列表/评论并尝试添加:

<%= will_paginate(comment) %> # this crashed, undefined method `total_pages' for #<Comment:0x007ff556a36468>

编辑:当你收到错误时,will_paginate wiki会告诉你传递一个分页数组,但我不知道已经完成了&gt;。&gt ;;它没有显示你将如何做到这一点......

编辑: http://csnipp.com/s/709这个网站说你所要做的就是创建一个文件config / initializers / will_paginate.rb并将这行代码放在其中:

 require 'will_paginate/array'

但那没有帮助

编辑:

如果你们需要查看更多代码,那么它实际上是在github上: https://github.com/ilovemysillybanana/pastie/

我真的坚持这个D:我遵循了如何发表评论的教程,但他们并没有分页。

编辑: 我修好了它!

这样做的方法是更换这一行:

<%= render partial: 'listings/comment',  collection: @listing.comments.reverse %>

这一行:

<%= render partial: 'listings/comment',  collection: @list_comments = @listing.comments.paginate(:page => 1, :per_page => 5) %>

但出于某种原因,我没有获得更改评论页面的数字:/

1 个答案:

答案 0 :(得分:1)

 <%= will_paginate @listing_comments %>

我的代码是正确的,我没有意识到@listings或@list_comments正在创建一个需要自己分页的局部变量。我试图在一个命令中找到一种分页的方法(如果可能的话,我不在乎,但如果你知道未来我知道它是多么好的话),无论如何,我需要做的就是修复这是添加这个:

insert into table (columns_names_here)
select    
   col.table_name, .... 
   case when col.is_nullable = 'YES' then 1 else 0 end as enabled, 
   col.data_type
from 
 ....