gpt4 book ai didi

ruby-on-rails - rails belongs_to 可选,但如果通过则检查是否存在

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

我有一个属性,我希望它在 belongs_to 中是可选的,因为用户不必立即属于某个团队。

class User < ActiveRecord::Base
belongs_to :team, optional: true
end

在未传入 team_id 的情况下创建的用户:

irb(main):001:0> User.create()
D, [2019-08-16T18:56:53.961520 #1] DEBUG -- : (0.4ms) BEGIN
D, [2019-08-16T18:56:53.988354 #1] DEBUG -- : SQL (0.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2019-08-16 18:56:53.985875"], ["updated_at", "2019-08-16 18:56:53.985875"]]
D, [2019-08-16T18:56:54.017858 #1] DEBUG -- : (1.0ms) COMMIT
=> #<User id: 5, provider: nil, uid: nil, name: nil, email: nil, oauth_token: nil, oauth_expires_at: nil, created_at: "2019-08-16 18:56:53", updated_at: "2019-08-16 18:56:53", team_id: nil, pagerduty_id: nil, slack_user_id: nil, admin: false>

这很好,但是当我为这个用户传入一个 team_id 时,rails 不会在创建用户之前检查该记录是否存在于 teams 表中记录。这可能会导致 team_idteams 数据库中不存在的团队传递。

目前我们数据库中的团队:

D, [2019-08-16T18:57:10.745090 #1] DEBUG -- :   Team Load (0.8ms)  SELECT "teams".* FROM "teams"
=> #<ActiveRecord::Relation [#<Team id: 1, pagerduty_service_key: nil, pagerduty_id: nil, name: "something", slack_channel: nil, slack_usergroup: nil>]>

创建 team_id2 的用户仍然有效:

User.create(team_id: 2)
D, [2019-08-16T18:59:12.776053 #1] DEBUG -- : (1.7ms) BEGIN
D, [2019-08-16T18:59:12.783799 #1] DEBUG -- : SQL (1.3ms) INSERT INTO "users" ("team_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["team_id", 2], ["created_at", "2019-08-16 18:59:12.777772"], ["updated_at", "2019-08-16 18:59:12.777772"]]
D, [2019-08-16T18:59:12.789468 #1] DEBUG -- : (1.9ms) COMMIT
=> #<User id: 6, provider: nil, uid: nil, name: nil, email: nil, oauth_token: nil, oauth_expires_at: nil, created_at: "2019-08-16 18:59:12", updated_at: "2019-08-16 18:59:12", team_id: 2, pagerduty_id: nil, slack_user_id: nil, admin: false>

从模型中删除 optional: true 验证记录是否存在,但它也使得 NULL 值不再被允许。有没有一种 Rails 方法可以检查 teams 表中是否存在 team_id 而无需在数据库级别添加外键?

最佳答案

不幸的是,使用 optional 选项它会关闭记录的存在验证,但您可以在模型中添加自定义验证:

class User < ActiveRecord::Base
belongs_to :team, optional: true

validates_presence_of :team, if: :team_id_present?

private

def team_id_present?
team_id.present?
end
end

关于ruby-on-rails - rails belongs_to 可选,但如果通过则检查是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57529857/

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