我有一个简单的表格,可以管理公司的职位。我正在使用accepts_nested_attributes
API 来实现这一点。用户可以使用加号/减号按钮添加/删除位置,并为每个位置选择用户和位置。我要强制执行的一项验证是,用户不能在同一家公司拥有多个职位。我是这样执行的:
class User < ActiveRecord::Base
has_many :positions
end
class Position < ActiveRecord::Base
belongs_to :user
belongs_to :company
validates :title, presence: true
validates :user, presence: true
validates :company, presence: :true
validates :user, uniqueness: { scope: :company }
end
class Company < ActiveRecord::Base
has_many :positions
accepts_nested_attributes_for :positions, allow_destroy: true
end
但是,如果一个人被删除,我注意到一个错误 - 然后重新添加到同一家公司而不在两者之间保存。这是说明问题的示例:
company = Company.create(name: "Widgets")
mark = User.create(name: "Mark")
luke = User.create(name: "Luke")
mark_position = Position.create(company: company, user: mark, title: "CTO")
luke_position = Position.create(company: company, user: luke, title: "CFO")
company.positions_attributes = [
{ id: mark_position.id, _destroy: true },
{ id: john_position.id, _destroy: true },
{ user_id: mark.id, title: "CPO" },
{ user_id: john.id, title: "CMO" },
]
company.save!
验证失败:为用户将用户重复职位定位到公司
我可以做任何事情来允许这样的更改而不会导致分配验证失败(我也在数据库级别强制执行 - 这意味着这些会在服务器上引发 5xx 错误)?