0

所以我在我的 rails 应用程序中有一个非常简单的投票系统,它允许用户投票:

pin_controller.rb

def upvote
  @pin = Pin.friendly.find(params[:id])

  if @pin.votes.create(user_id: current_user.id)
     flash[:notice] =  "Thanks for your recommendation."
    redirect_to(pin_path)
  else 
    redirect_to(pin_path)
  end
end

在我看来,他们可以通过单击按钮(由图标表示)来投票: 在 app/views/pins/index.html.erb

<%= link_to upvote_pin_path(pin), method: :post do %>
   <span class="text-decoration: none;"><i class="fa fa-chevron-up"></i>
<% end %>
<%= pluralize(pin.votes.count, "") %></span>

如果用户已经对图钉投了赞成票,我想用不同的颜色渲染图标:所以我考虑过使用存在?:

<%= link_to upvote_pin_path(pin), method: :post do %>

      <% if pin.votes.where(user_id: current_user.id).exists? %>
            <i class="fa fa-chevron-up" style="color:red"></i>
      <% else %>
            <i class="fa fa-chevron-up"></i>
      <% end %>
<% end %>

但是不起作用,而是所有图标都显示为红色,有什么想法吗?

4

1 回答 1

0

问题是您正在检查表是否存在(检查存在?文档)。

你想要做的是检查它是否是empty?

于 2014-10-28T22:20:28.327 回答