0

我让我的应用程序正常工作,因此用户只能删除他们自己的评论,但现在我试图添加指向该网站的链接,但我只希望评论的创建者能够看到该链接。

我试着做

<% if current_user %>

但是当我这样做时,它会显示在所有评论上,而不仅仅是用户。我可以

<% if current_user.admin %> 

这限制了只有管理员才能看到删除链接。我也试过

 <% if @comment.user_id == current_user.id %>

那也不起作用。我该怎么做才能让评论创建者只能看到评论?

这是我的看法

_comments.html.erb

  <div class="container">
  <% @comments.each do |comment| %>
  <div class="comment">
<div class="gravatar_border">
  <%= gravatar_for comment.user, size: '49' %>
</div>

<div class="user_info_comments">
  <b><%= comment.user.name %></b>
  <%= comment.created_at.strftime("%b. %d  %Y") %>
</div>

<div class="user_comments">
  <%= simple_format comment.content %> 
  <%= pluralize comment.reputation_value_for(:votes).to_i, "vote" %>
  <%= link_to "", vote_comment_path(comment, type: 'up'), method: "post", class: ' icon-thumbs-up' %>
  <%= link_to "", vote_comment_path(comment, type: 'down'), method: "post", class: ' icon-thumbs-down' %>
  <% if @comment.user_id == current_user.id %>
  <%= link_to 'delete', comment, method: :delete, confirm: 'you sure?' %>
  <% end %>
   </div>
  </div>
 <% end %>
 <br />
</div>

这是我的控制器

评论控制器.rb

  def destroy
      @comment = Comment.find(params[:id])
      if @comment.user_id == current_user.id
        @comment.destroy
        flash[:notice] = "comment deleted!"
      else
        flash[:error] = "not allowed"
      end
   redirect_to :back
 end 

这是该网站的链接http://www.batman-fansite.com

4

2 回答 2

2

在您看来更改@commentcomment

<% if comment.user_id == current_user.id %>

@comment在您的destroy操作中定义,但是当您在视图中设置这样的块时

<% @comments.each do |comment| %>

@comment没有价值,只有comment

于 2012-12-18T00:11:52.600 回答
1
<% if comment.user_id == current_user.id %>

并且应该工作)

于 2012-12-18T00:12:02.917 回答