Rails 6.0.0.beta3红宝石 2.6.1
我在Item
和Variant
之间有两个模型关联,如下所示:
class Item < ApplicationRecord
...
has_many :variants
accepts_nested_attributes_for :variants,
reject_if: :all_blank,
allow_destroy: true
end
和变体模型如下:
class Variant < ApplicationRecord
belongs_to :item, -> { where(kind: :article) }
end
如上所述,我们有一个belongs_to
的条件关系,它取决于Item
字段kind
具有值article
。
问题:在创建具有嵌套表单字段的item
时variant
它会按预期提高kind: :article
的验证,但它会提高所有其他kind
值(如kind: :novel
(。在 rails 控制台上,我尝试手动创建
item = Item.create(kind: :article)
item.variants.create
...
item = Item.create(kind: :novel)
item.variants.create
it raises validation error 'should be of kind: :article only'
它适用于控制台,但不适用于嵌套表单字段。其他相关的已知问题案例:https://github.com/rails/rails/issues/25198
我建议在Variant
模型中验证项目类型,而不是在belongs_to
中验证where
。
因为在你的情况下Item.create!(kind: :novel).variants.create!
会引发错误(Item must exist
当我尝试它时(。
产生了兴趣并做了一个最小的测试回购(https://github.com/localhostdotdev/bug/tree/belongs-to-where-and-accepts-nested-attributes((虽然没有表格(。