我正在尝试验证has_many-through关系在表单提交时至少选择了一个值。为简单起见,我们只需将关系称为“关系”,即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}