我建立了一个search
模型,并希望至少填写一个字段。我发现了一个有助于验证的问题Rails: how to require at least one field not be blank。(我尝试了所有答案,但 Voyta 的似乎是最好的。)
验证工作正常,除非我想通过attr_accessor
or重新定义 getter/setter attr_writer
。(我在表单上有需要作为验证之外的虚拟属性。)为了找出问题所在,我使用常规属性进行了测试item_length
。如果我添加attr_accessor :item_length
,验证将停止工作。所以,我想问题是如何在不使用点符号的情况下读取属性的值。由于验证使用字符串,我不能使用正常的阅读方式。
这是一个片段:
if %w(keywords
item_length
item_length_feet
item_length_inches).all?{|attr| read_attribute(attr).blank?}
errors.add(:base, "Please fill out at least one field")
end
就像我说的那样,虚拟属性(length_inches 和 length_feet)根本不起作用,而普通属性(length)起作用,除非我重新定义了 getter/setter。