gpt4 book ai didi

ruby-on-rails - validates_uniqueness_of 传递 nil 或空白(没有allow_nil 和allow_blank)

转载 作者:行者123 更新时间:2023-12-03 05:38:54 24 4
gpt4 key购买 nike

The uniqueness validator of ActiveRecord如果值为 nil 或空白,则可以选择跳过验证。即使我将两个参数设置为 true(默认行为),我也可以在验证命中之前创建一条包含 nil 和空白的记录。我使用默认的 SQlite3 数据库 sqlite3-ruby (1.2.5)。

编辑以澄清:如果将 validates_presence_of 添加到模型,我会得到预期的结果。我认为 validates_uniqueness_of 的默认行为会让这个变得多余。

测试用例:

rails validation_test
cd validation_test/
script/generate Model Thing identification:string
rake db:migrate

app/models/thing.rb 的内容:

class Thing < ActiveRecord::Base
validates_uniqueness_of :identification
end

Rails 控制台:

script/console 
Loading development environment (Rails 2.3.4)
>> Thing.create!
=> #<Thing id: 1, identification: nil, created_at: "2009-09-26 01:49:32", updated_at: "2009-09-26 01:49:32">
>> Thing.create! :identification => ""
=> #<Thing id: 2, identification: "", created_at: "2009-09-26 01:49:42", updated_at: "2009-09-26 01:49:42">
>> Thing.create! :identification => ""
ActiveRecord::RecordInvalid: Validation failed: Identification has already been taken
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/validations.rb:1090:in `save_without_dirty!'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/dirty.rb:87:in `save_without_transactions!'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/transactions.rb:200:in `save!'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/database_statements.rb:136:in `transaction'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/transactions.rb:182:in `transaction'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/transactions.rb:200:in `save!'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/transactions.rb:208:in `rollback_active_record_state!'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/transactions.rb:200:in `save!'
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.4/lib/active_record/validations.rb:1059:in `create!'
from (irb):3
>> Thing.count
=> 2

为什么前两个作品会通过?

谢谢

最佳答案

您对默认行为的理解是错误的。来自 the docs :

:allow_nil - If set to true, skips this validation if the attribute is nil (default is false).:allow_blank - If set to true, skips this validation if the attribute is blank (default is false, it includes nil too).

allow_blank 设置为 true,我在 Rails 2.3.4 中看到以下行为。

class Thing < ActiveRecord::Base
validates_uniqueness_of :identification, :allow_blank => true
end

>> Thing.create! :identification => ""
=> #<Thing id: 6, identification: "", created_at: "2009-09-26 03:09:48", updated_at: "2009-09-26 03:09:48">
>> Thing.create! :identification => ""
=> #<Thing id: 7, identification: "", created_at: "2009-09-26 03:09:49", updated_at: "2009-09-26 03:09:49">
>> Thing.create! :identification => nil
=> #<Thing id: 8, identification: nil, created_at: "2009-09-26 03:09:52", updated_at: "2009-09-26 03:09:52">
>> Thing.create! :identification => nil
=> #<Thing id: 9, identification: nil, created_at: "2009-09-26 03:09:53", updated_at: "2009-09-26 03:09:53">

编辑:进行澄清。

添加 validates_presence_of 对于您想要执行的操作来说是正确的。它不是多余的,因为它正在检查完全不同的错误情况。它还有自己的错误消息,这对用户来说很重要。

class Thing < ActiveRecord::Base
validates_uniqueness_of :identification, :allow_blank => true
validates_presence_of :identification
end

关于ruby-on-rails - validates_uniqueness_of 传递 nil 或空白(没有allow_nil 和allow_blank),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1480227/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com