0

为什么验证不起作用embeds_one

class Foo
  include Mongoid::Document

  embeds_one :bar, :cascade_callbacks => true
end

class Bar
  include Mongoid::Document

  embedded_in :foo

  field :test, :type => String
  field :year, :type => Integer, :default => Time.now.utc.year
  field :month, :type => Integer, :default => Time.now.utc.month
  field :day, :type => Integer, :default => Time.now.utc.day

  # validates :year, :uniqueness => true, :presence => true, :scope => [:month, :day]
  # validates :day, :uniqueness => { :scope => [:month,:year] }
  validates_uniqueness_of :year, :scope => :day
end

Foo.create(:bar => { :test => 'asdf' }) # created document
Foo.create(:bar => { :test => 'asdf' }) # created document, no validation thrown!

为什么 Foo 被多次创建?

4

1 回答 1

1

关于validates_uniqueness_ofMongoid 的文档说:

验证属性是否唯一。请注意,对于嵌入式文档,这只会检查该字段在父文档的上下文中是否唯一,而不是整个数据库。

在您的情况下,示例中创建了两个不同的文档。因此,该行为在 Mongoid 中是正确的。

于 2013-05-17T22:02:05.143 回答