0

我有一个模型购买:

class Purchase < ActiveRecord::Base
    has_many :purchase_items, dependent: :destroy
    accepts_nested_attributes_for :purchase_items, reject_if: :all_blank, allow_destroy: true
    validates_length_of :purchase_items, minimum: 1
end

和购买项目:

class PurchaseItem < ActiveRecord::Base
    belongs_to :purchase
end

假设我只购买了一件商品。如果我通过以下方式将物品标记为销毁:

purchase.purchase_items.first.mark_for_destruction
purchase.save!

购买保存完好,在数据库中没有任何引用的项目。

检查 ActiveModel::Validations::LengthValidator 中的 validate_each 方法,我们可以看到它不会验证正在验证的值是否具有标记为销毁的对象。

https://github.com/rails/rails/blob/master/activemodel/lib/active_model/validations/length.rb

这是正常行为还是实际上是一个问题?如果它是正常的,那么验证关系长度以及标记的_for_destruction 对象的正确方法是什么?

(当然没有自定义验证器......)

4

1 回答 1

0

您唯一的选择是编写自定义验证器。

这是一个开放的错误,并且有一个 PR 来修复它,但他们只是在那里坐了几个月:

https://github.com/rails/rails/issues/7247

https://github.com/rails/rails/pull/9917

于 2013-09-09T21:07:56.820 回答