我有三个模型:User,Comment和Upvote. User-to-Comment具有一对多关系,Comment-to-Upvote具有一对多关系,User-to-Upvote具有一对多关系.
我想做一些类似于Stackoverflow上的upvoting的事情.因此,当您进行upvote / downvote时,即使您刷新页面或在几天/几周后返回页面,箭头也会突出显示并保持突出显示.@H_301_3@
目前我这样做:@H_301_3@
<% if Upvote.voted?(@user.id,comment.id) %> <%= link_to '^',... style: 'color: orange;'%> <% else %> <%= link_to '^',... style: 'color:black;'%> <% end %>
def self.voted?(user_id,comment_id) find_by(comment_id: comment_id,user_id: user_id).present? end
解决方法
假设你已经正确设置了关系
# user.rb class User has_many :upvotes end
# comments_controller.rb def index @comments = Comment.limit(10) @user = current_user user_upvotes_for_comments = current_user.upvotes.where(comment_id: @comments.map(&:id)) @upvoted_comments_ids = user_upvotes_for_comments.pluck(:comment_id) end
然后根据视图中的条件进行更改:@H_301_3@
# index.html.erb <% if @upvoted_comments_ids.include?(comment.id) %> <%= link_to '^',... style: 'color:black;'%> <% end %>