gpt4 book ai didi

ruby-on-rails - 为什么 update_all 不能在带有 mongoid 的 rails 中工作?

转载 作者:行者123 更新时间:2023-12-04 06:01:45 25 4
gpt4 key购买 nike

我有一个用户和通知模型,用户 has_many 通知。通知由 kaminari 寻呼:通知模型定义,

class Notification
...
field read, type: Boolean, default: false
belongs_to :user
scope :recent, ->(source) { where(source: source).desc(:created_at) }
...
end

在通知 Controller 中,

@notifications = current_user.notifications.recent(@source).page(params[:page])

然后我想在渲染当前页面后将读取属性更改为 true 但它不起作用:

@notifications.update_all(read: true)

read 属性在那里没有改变。而且我还有 1 个棘手的事情:

  1. 删除范围指令(最近)时,update_all 可以工作,但它不仅会更新当前用户,还会更新所有其他用户。

我在我的瘦服务器中找到了一些日志,但没有发现错误:

MOPED: 127.0.0.1:27017 UPDATE       database=cse_development collection=notifi
cations selector={"$query"=>{"user_id"=>"509765c42061c79036000004", "source"=>"t
opic"}, "$orderby"=>{"created_at"=>-1}} update={"$set"=>{:read=>true}} flags=[:m
ulti] (0.9999ms)

我错过了什么吗?

提前致谢!

最佳答案

你可以试试这个

@notifications.update_all(:read => true)

关于ruby-on-rails - 为什么 update_all 不能在带有 mongoid 的 rails 中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13302438/

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