Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
初始化对象时,有没有办法覆盖 activeresource 上的属性设置器?
您可以尝试覆盖加载方法
def load(attributes, remove_root = false) super(attributes, remove_root) #put your code, here you have @attributes collection self end