gpt4 book ai didi

ruby-on-rails - Rails,销毁还是删除?

转载 作者:行者123 更新时间:2023-12-04 16:19:48 26 4
gpt4 key购买 nike

为什么这样做:

@poll_votes = PollVote.where(:user_id => self.user_id, :poll_id => self.poll_id).all

@poll_votes.each do |p|
p.destroy
end

但这不?
@poll_votes = PollVote.where(:user_id => self.user_id, :poll_id => self.poll_id).destroy

最佳答案

where 方法返回满足选择标准的事件记录对象的可枚举集合。在该集合上调用 destroy 方法与在单个 activerecord 对象上调用 destroy 方法不同。

关于ruby-on-rails - Rails,销毁还是删除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6482008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com