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