在三个不同领域独树一帜

发布于 2024-10-14 07:00:46 字数 241 浏览 5 评论 0原文

我正在开发 Ruby on Rails Web 应用程序。我想一起验证多个领域的唯一性。我该怎么做?

例如:我有一个名为 waiting 的模型,其中包含三个字段:

project_id category_iduser_id

我想确保我不会在所有三个字段中出现两个相同的行。

I am working on a Ruby on Rails web application. I want to validate the uniqueness of more than one field together. How can i do this?

For example: I have a model named waiting with three fields:

project_id category_id and user_id

I want to ensure that i won't have two identical rows in all three fields.

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

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

发布评论

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

评论(2

时光与爱终年不遇 2024-10-21 07:00:46

为什么不直接:

validates_uniqueness_of :user_id, :scope => [:project_id, :category_id]

+

add_index :waitings, [:project_id, :category_id, :user_id], :unique => true

阅读 API:

Why not just to:

validates_uniqueness_of :user_id, :scope => [:project_id, :category_id]

+

add_index :waitings, [:project_id, :category_id, :user_id], :unique => true

Read API:

甜中书 2024-10-21 07:00:46

它并不漂亮,但这对我有用:

class Waiting < ActiveRecord::Base
  validate :must_be_unique

  def must_be_unique
    if self.class.where(project_id: project_id, category_id: category_id, user_id: user_id).exists?
      errors.add(:base, 'Must be unique')
    end
  end
end

当然,您可以在数据库模式中使用唯一的键,然后在极少数需要的情况下捕获相关异常。

It's not pretty but this works for me:

class Waiting < ActiveRecord::Base
  validate :must_be_unique

  def must_be_unique
    if self.class.where(project_id: project_id, category_id: category_id, user_id: user_id).exists?
      errors.add(:base, 'Must be unique')
    end
  end
end

Of course you could just use a unique key in your db schema and then catch the relevant exceptions on the rare occasion you need to.

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