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.
客观的:
我想将一个类中所有对象的数组属性重置为[]。他们开始的方式。
我的尝试:
> Deal.find(:all).update_attribute('votes', [])
结果:
返回错误。你会怎么做?
发生这种情况是因为 find(:all) 返回一个数组。
你可以做:
Deal.update_all :votes => []
或者
Deal.all.each { |d| d.update_attribute(:votes, []) }
如果你需要更具体的东西。