我有一个模型购买:
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 对象的正确方法是什么?
(当然没有自定义验证器......)