gpt4 book ai didi

ruby-on-rails-3 - 如何强制 rails 存储空字符串?

转载 作者:行者123 更新时间:2023-12-03 23:35:53 25 4
gpt4 key购买 nike

我问的是 question to force empty strings to be NULL 的反义词;相反,我希望将空字符串的字段存储为空字符串。我想要这样做的原因(即使与 to what some people say 相矛盾)是我想对适用于多种数据库类型(postgres、mysql 等)的表具有部分唯一性约束,如所述 in this question here .

模式的伪代码基本上是:

Person {
first_name : String, presence: true
middle_name : String, presence: true
last_name : String, presence: true
birth_date : String, presence: true
city_of_birth: String, presence: true
active: tinyint
}

约束是一个人如果活跃就必须是唯一的;不活跃的人可以不是唯一的(即,我可以有多个不活跃的 John Smith,但只有一个活跃的 John Smith)。

更复杂的是:根据项目规范,用户只需要提供 first_name 和 last_name,所有其他字段都可以为空。

我们当前应用部分唯一性约束的解决方案是使用 NULL != NULL 这一事实,如果有人不活跃,则将 active tinyint 设置为 NULL,如果有人活跃,则将其设置为 1。因此,我们可以在迁移中使用此 Rails 代码:

add_index :Persons, [first_name, middle_name, last_name, birth_date, 
city_of_birth, active], unique:true, name: "unique_person_constraint"

但是,为了使此约束起作用,其他字段都不能为 NULL。如果是,那么两个没有其他填充字段且 active = 1 的 John Smiths 仍然是“唯一的”,因为值为 NULL 的 middle_name 字段将彼此不同(因为 NULL != NULL,无论列类型如何)。

但是,当我这样做的时候

options = { first_name: "John",
middle_name: "",
last_name: "Smith",
birth_date: "",
city_of_birth: "",
}
person = Person.new(options)
success = person.valid?

success 总是 false 因为

Middle name can't be blank
City of birth can't be blank
Birth date can't be blank

所以我需要一种方法来确保我始终至少为那些其他字段提供空字符串,以强制执行部分唯一性约束。我怎样才能做到这一点?如果我去掉模型定义中的 presence:true,那么现在似乎允许 NULL 字段,这很糟糕。

这是Rails 3.2.13,如果需要我可以提供其他gem和gem版本。

最佳答案

除了 presence true 之外,您还可以将 allow_blank 添加为 true,这将允许您保存空字符串。

关于ruby-on-rails-3 - 如何强制 rails 存储空字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17705637/

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