ruby-on-rails – 我可以在数组上使用update_all吗?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 我可以在数组上使用update_all吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个数组中的注释列表.我可以在阵列上使用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)
原文链接:https://www.f2er.com/ruby/265914.html

猜你在找的Ruby相关文章