0

我正在使用 rails3、devise 和acts_as_votable

我根据他的投票情况准备了显示“书签”或“取消书签”的视图。
但我不知道该放什么。有人有想法吗?

<% 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 %>
4

1 回答 1

1

你可以试试

current_user.voted_for? @community

upd:文档示例https://github.com/ryanto/acts_as_votable#the-voter

@user.likes @comment1

@user.voted_for? @comment1 # => true
于 2012-12-22T13:21:14.713 回答