如何以最少的数量验证嵌套属性的数量?

| 两种模型:字段和值。使用accepts_nested_attributes_for将值嵌套到Field 一个字段可以有许多值。该字段的属性input_type是一个枚举,可以是:text,:checkbox,:radio ou:select。值是为此字段显示的选项,因此,如果field.input_type为radio或select,则仅对字段使用一个值是没有逻辑的。 使用对字段的验证,如何防止仅插入一个值的字段插入? 谢谢     
已邀请:
我尚不清楚您的问题是否100%清楚,但是如果我对您的理解正确,那么您希望阻止在仅具有一个关联值的情况下保存Field模型的实例吗?
class Field < ActiveRecord::Base
  include ActiveModel::Validations
  has_many :values
  validates :values, :presence_of_multiple => true
end

class PresenceOfMultiple < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    record.errors[attribute] << \"must have more than one.\" unless \\
      value.exists? && value.count > 1
  end
end
据我所知,这将是最Rails式的方法,但是您也可以将其编写为在
before_validation
回调中调用的模型方法。实际上,有很多方法可以执行这种操作。     

要回复问题请先登录注册