说我有项目,这是与Tag的多对多关联.我使用has_many,所以我有单独的连接模型.
如何创建验证,检查连接模型的唯一性?现在我只有
has_many :tags,:through => :taggings,:uniq => true
但这并不能保存.
解决方法
尝试
validates_associated.
相信允许连接模型验证在保存之前运行.所以在你的情况下:
class Project has many :tags,:through => :taggings validates_associated :taggings end class Taggings belongs_to :tags #your validations here.... end class Tag has_many :taggings end