1

初始化对象时,有没有办法覆盖 activeresource 上的属性设置器?

4

1 回答 1

1

您可以尝试覆盖加载方法

 def load(attributes, remove_root = false)
       super(attributes, remove_root)
       #put your code,  here you have @attributes collection
       self
    end
于 2012-04-06T14:47:02.237 回答