我在Rails文档
here中注意到不推荐使用update_attributes方法:
This method is deprecated on the latest stable version of Rails. The last existing version (v2.3.8) is shown here.
我很想知道它为什么被弃用以及它取而代之的是什么.
这对我来说不是一个巨大的后果,因为这个方法在我的Rails 2.x应用程序中运行良好.然而,有一天我希望升级到Rails 3,我想开始掌握我需要改变什么以及如何以不同方式完成工作.
解决方法
Apidock有点误导,实际上是“弃用或移动”;后者是真的,前者不是. ActiveRecord :: Base包含ActiveRecord :: Persistence,它定义了#update_attributes.您可以在
http://apidock.com/rails/ActiveRecord/Persistence/update_attributes在apidock上查看此文档.
虽然现在也在ActiveResource中,但是没有update_attributes的共享实现,你不应该在那里寻找与ActiveRecord :: Base相关的文档,反之亦然.