活动记录验证 - validates_linked

发布于 2024-11-05 14:49:35 字数 535 浏览 0 评论 0原文

我不清楚这个方法的实际用途或何时使用它。

假设我有这些模型:

Person < ...
  # id, name
  has_many :phone_numbers
end

PhoneNumber < ...
  # id, number
  belongs_to :person
  validates_length_of :number, :in => 9..12    
end

当我为这样的人创建电话号码时:

@person = Person.find(1)
@person.phone_numbers.build(:number => "123456")
@person.phone_numbers.build(:number => "12346789012")
@person.save

保存失败,因为第一个号码无效。这对我来说是一件好事。但我不明白的是,它是否已经验证关联记录函数 validates_linked 是什么?

I'm unclear on what this method actually does or when to use it.

Lets say I have these models:

Person < ...
  # id, name
  has_many :phone_numbers
end

PhoneNumber < ...
  # id, number
  belongs_to :person
  validates_length_of :number, :in => 9..12    
end

When I create phone numbers for a person like this:

@person = Person.find(1)
@person.phone_numbers.build(:number => "123456")
@person.phone_numbers.build(:number => "12346789012")
@person.save

The save fails because the first number wasn't valid. This is a good thing, to me. But what I don't understand is if its already validating the associated records what is the function validates_associated?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅笑依然 2024-11-12 14:49:35

您可以执行 has_many :phone_numbers, validate: false 并且您看到的验证不会发生。

那么为什么要使用 validates_linked 呢?您可能想要执行 validates_linked :phone_numbers, on: :create 并跳过更新验证(例如,如果您的数据库中已经存在错误数据,并且您不想为此打扰现有用户)。

还有其他场景。根据文档,has_one 默认情况下是validate: false。因此,您需要 validates_linked 来更改它。

You can do has_many :phone_numbers, validate: false and the validation you're seeing wouldn't happen.

Why use validates_associated then? You might want to do validates_associated :phone_numbers, on: :create and skip validation on update (e.g. if there was already bad data in your db and you didn't want to hassle existing users about it).

There are other scenarios. has_one according to docs is validate: false by default. So you need validates_associated to change that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文