我正在尝试这样做
User.find([23,45,68,123]).update_all(:is_active => true)
但我得到:
NoMethodError: undefined method `update_all' for #<Array:0x00000007493778>
什么是正确的语法?如果不需要,我宁愿不遍历每一个。
我正在尝试这样做
User.find([23,45,68,123]).update_all(:is_active => true)
但我得到:
NoMethodError: undefined method `update_all' for #<Array:0x00000007493778>
什么是正确的语法?如果不需要,我宁愿不遍历每一个。
find
返回一个数组,因此您不能使用update_all
.
为了解决这个问题,我认为你可以使用where
,它返回一个ActiveRecord::Relation
,所以update_all
应该工作:
User.where(:id =>[23,45,68,123]).update_all(:is_active => true)
http://apidock.com/rails/ActiveRecord/Relation/update_all
我希望它有帮助...