与嵌套表单域的条件关联无法正确验证



Rails 6.0.0.beta3红宝石 2.6.1

我在ItemVariant之间有两个模型关联,如下所示:

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

问题:在创建具有嵌套表单字段的itemvariant它会按预期提高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((虽然没有表格(。

相关内容

  • 没有找到相关文章

最新更新