我正在尝试验证has_many关系在提交表单时是否至少选择一个值。 为简单起见,我们只称这种关系为"关系",因此 ids 称为"relationship_ids"。
在我的模型上,我包括以下内容:
attr_accessible :relationship_ids
validates :relationship_ids, :length => {:minimum => 1}
不幸的是,这是行不通的,因为Rails表单在数组中包含一个空字符串(即:[""]
),以防用户不选择任何内容,这样Rails就知道删除之前设置的所有关联。 没有错误,只是relationship_ids
的长度为 1,因此验证成功。
我的下一个想法是我可以覆盖 relationship_ids=
方法的实现,所以我尝试了这个:
def relationship_ids=(ids)
super ids.reject(&:blank?)
end
不幸的是,这会导致NoMethodError,特别是:
super:没有超类方法 'relationship_ids='
我认为必须有一种更好/更正确的方法来做到这一点,并且正在这里寻找一些输入。 谢谢!
编辑:我已经有一个以前使用的自定义验证器。 我已经更新了它以考虑 ids
数组中的空字符串。 在这里,以防这对其他人有所帮助。
class RelationshipValidator < ActiveModel::EachValidator
CHECKS = { :is => :==, :minimum => :>=, :maximum => :<= }.freeze
MESSAGES = { :is => :equal_to, :minimum => :greater_than_or_equal_to, :maximum => :less_than_or_equal_to }.freeze
RESERVED_OPTIONS = [:minimum, :maximum, :within, :is, :greater_than_or_equal_to, :less_than_or_equal_to]
def initialize(options)
if range = (options.delete(:in) || options.delete(:within))
raise ArgumentError, ":in and :within must be a Range" unless range.is_a?(Range)
options[:minimum], options[:maximum] = range.begin, range.end
options[:maximum] -= 1 if range.exclude_end?
end
super(options)
end
def check_validity!
keys = CHECKS.keys & options.keys
if keys.empty?
raise ArgumentError, 'Range unspecified. Specify the :within, :maximum, :minimum, or :is option.'
end
keys.each do |key|
value = options[key]
unless value.is_a?(Integer) && value >= 0
raise ArgumentError, ":#{key} must be a nonnegative Integer"
end
end
end
def validate_each(record, attribute, value)
value = record.send(attribute.to_sym).reject(&:blank?).size
CHECKS.each do |key, validity_check|
next unless check_value = options[key]
next if value && value.send(validity_check, check_value)
errors_options = options.except(*RESERVED_OPTIONS)
errors_options[:count] = check_value
default_message = options[MESSAGES[key]]
errors_options[:message] ||= default_message if default_message
record.errors.add(attribute, MESSAGES[key], errors_options)
end
end
end
要使用它,这里有几个例子:
validate :relationship_ids, :relationship => {:minimum => 1}
validate :relationship_ids, :relationship => {:maximum => 5}
validate :relationship_ids, :relationship => {:is => 2}
validate :relationship_ids, :relationship => {:within => 1..3}
如前所述(此处),此自定义 Rails 验证指南可能会有所帮助。