ruby-on-rails – Rails – 根据另一个表验证唯一性

我有投票和投票表格的帖子.我可以在投票和投票模型中验证唯一性,以确保用户不能多次投票或投票.我想验证这两个模型的唯一性,以便用户不能投票选出他们已经投票的帖子,反之亦然.香港专业教育学院尝试过自定义验证,userfaved,定义如下,但它不起作用.

 class Vote < ActiveRecord::Base

 validates_uniqueness_of :user_id,  :scope => :article_id #allows only one vote

 validate :userfaved

 def userfaved
  if Votedown.where( :user_id => :user_id, :artcle_id => :article_id).any?
      errors.add(:user_id, 'already voted on this') 
  end
 end



class Votedown < ActiveRecord::Base

validates_uniqueness_of :user_id, :scope => :article_id #allows only one votedown

validate :userfaved

def userfaved
    if Vote.where(:user_id=> :user_id, :article_id => :article_id).any?
        errors.add(:user_id, 'already voted on this')
    end
end

最佳答案 看起来您的验证中存在一个错误:您传递给符号的散列中的值.将其更改为以下内容,它应该工作:

Votedown.where( :user_id => self.user_id, :article_id => self.article_id).any?

但我认为有一种更简单的方法可以做到这一点.你可以只有一个表投票并添加一个属性来记录它是上升还是下降?这将使您的独特性检查非常简单.如果你真的想要它的单独的类,你可以使用单表继承:有一个投票表,一个超类投票和两个子类,VoteUp和VoteDown.

点赞