由于文体原因,我想避免使用类变量,并希望用类实例变量替换它们。所以,如果我有:我可以使用Simple Form gem中的类实例变量替换类变量吗?
module SimpleForm
mattr_accessor :input_error_class
@@input_error_class = 'error-field'
...
end
,我将其更改为:
module SimpleForm
@input_error_class = 'error-field'
class << self
attr_accessor :input_error_class
end
...
end
这将打破简单的表单?
+1子类。 –