我有一个数组中的注释列表.我可以在阵列上使用update_all吗?
comments = Comments.find(:all,:conditions => ["test is not null"]) comments.update_all(:test => nil)
解决方法
您可以使用范围(查找或全部 – 在旧版本的Rails中返回一个数组):
comments = Comments.scoped(:conditions => "test IS NOT NULL") comments.update_all(:test => nil)
在现代版本的Ruby / ActiveRecord上,您可以编写:
Comments.where.not(test: nil).update_all(test: nil)