我eval()
在一个initialize
方法中使用:
class ActiveRecord::FakedModel
def initialize(attributes={})
attributes = {} if not attributes
attributes.each do |attr_name, value|
eval("@#{attr_name}=#{value.inspect}")
end
@attributes = attributes
end
...
end
并有一个用于清理空格的设置器:
class ContactForm < ActiveRecord::FakedModel
attr_accessor :plz
def plz=(plz)
@plz = plz.try(:delete,' ')
end
...
end
但是当我在哈希中给出“plz”时,这个设置器不起作用:
c=ContactForm.new(:plz=>' 1 3 3 3 ')
=> #<ContactForm:0x1024e3a10 @attributes={:plz=>" 1 3 3 3 "}, @plz=" 1 3 3 3 ">
在中使用设置器有什么问题eval
吗?