ruby-on-rails – ActiveRecord使用Scope允许的范围验证唯一性

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – ActiveRecord使用Scope允许的范围验证唯一性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个验证,看起来像这样:
class Book < ActiveRecord::Base

  belongs_to :author
  validates :name,uniqueness: { scope: :author_id }

end

问题是我想允许作者ID为零的重复名称.有没有办法使用validates方法(而不是自定义验证)?

解决方法

是的,有一个 Proc和:除非在验证器上.
class Book < ActiveRecord::Base

  belongs_to :author
  validates :name,uniqueness: { scope: :author_id },unless: Proc.new { |b| b.author_id.blank? }

end

推荐阅读:http://guides.rubyonrails.org/active_record_validations.html#using-a-proc-with-if-and-unless

原文链接:https://www.f2er.com/ruby/273934.html

猜你在找的Ruby相关文章