gpt4 book ai didi

mongodb - 用于更新多个文档的 Mongo findAndUpdate

转载 作者:可可西里 更新时间:2023-11-01 09:26:15 25 4
gpt4 key购买 nike

我正在尝试使用 mongo findAndUpdate 更新多个文档并不断收到语法错误:

db.forecasts.findAndModify({
query: {forDate: ISODate("2016-02-25T05:00:00.000+0000")},
update: {
{ $set: {forDate: ISODate("2016-02-23T05:00:00.000+0000")}},
{multi: true}
}
})

或者我也试过:

db.forecasts.update({
{'forDate': ISODate("2016-02-25T05:00:00.000+0000")},
{'forDate': ISODate("2016-02-23T05:00:00.000+0000")},
{multi: true}
})

我收到的错误是: Error at line 2 position 3: <missing ') '

最佳答案

在这里使用简单的更新查询,最后 2 个为“upsert”和“multi

db.forecasts.update( {"forDate":ISODate("2016-02-25T03:34:54Z")}, { $set : { "forDate" : new ISODate("2016-03-23T03:34:54Z") } }, true, true);

关于mongodb - 用于更新多个文档的 Mongo findAndUpdate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35598979/

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