我有三个模型:User,Comment和Upvote. User-to-Comment具有一对多关系,Comment-to-Upvote具有一对多关系,User-to-Upvote具有一对多关系.
我想做一些类似于Stackoverflow上的upvoting的事情.因此,当您进行upvote / downvote时,即使您刷新页面或在几天/几周后返回页面,箭头也会突出显示并保持突出显示.
目前我这样做:
<% 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
因此,如果我在页面上有10条评论,这将从我的数据库中加载10次upvote,只是为了检查它是否存在!
必须有一个更好的方法来做这件事,但我认为我的大脑停止工作,所以我想不出任何.
解决方法
假设你已经正确设置了关系
# 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
然后根据视图中的条件进行更改:
# index.html.erb <% if @upvoted_comments_ids.include?(comment.id) %> <%= link_to '^',... style: 'color:black;'%> <% end %>
它只需要2个DB查询.希望能帮助到你.