我正在使用Rails处理mongoDB。所以使用gem mongoid,任何人都知道如何在模型中验证哈希字段?
答案 0 :(得分:0)
答案 1 :(得分:0)
寻找解决方案,我找到了一个对我来说很好的自定义验证器,它可以一般地使用。
private
def fix_content(input_hash, valid_fields)
temphash = {}
input_hash.each do |k,v|
k=k.to_sym
if valid_fields.has_key? k
case valid_fields[k]
when 'integer'
v=v.to_i
when 'boolean'
v=(v=='true' || v==true)
when 'float'
v=v.to_f
when 'array'
v = "#{v.class}"=="Array" ? v : []
else
v=v.to_s
end
temphash[k]=v
end
end
temphash
end
我们假设我们有这个领域:
field :fieldname, type: Hash, default: {hfield1: 0, hfield2: [], hfield3: false}
实际上,它不是验证器,而是回调。它的工作原理如下:
before_save :fieldname_fix_content
在private
下:
def fieldname_fix_content
# we show the callback what fields will be processed. All others will be disposed of
self.fieldname = fix_content(self.fieldname, {:hfield1=> 'integer', :hfield2=>'array', :hfield3=>'boolean'})
end