0
我使用Rails3中,設計和acts_as_votable如何檢查current_user是否喜歡這個?
我準備的視圖來顯示「書籤」,或者根據自己的表決情況「取消書籤」。
但我不知道該放什麼。任何人有想法?
<% if xxxxxxxxxxxx %> <= *when @community hasn't been voted by current_user*
<%= link_to t('.bookmark', :default => t("helpers.links.bookmark")),
bookmark_community_path(@community), :class => 'btn' %>
<% else %>
<%= link_to t('.unbookmark', :default => t("helpers.links.unbookmark")),
bookmark_community_path(@community), :class => 'btn-danger' %>
<% end %>
感謝您的答覆:)如果我喜歡用 '喜歡',而不是投票? – HUSTEN
這將不起作用:(<如果current_user.likes?@community%> – HUSTEN
'voteed_for?'也適用於like。我已經添加文檔示例 – ck3g