gpt4 book ai didi

mongodb - MongoDb 可以返回增量结果吗?

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

是否可以执行 MongoDB 增量($inc)并将增量结果作为同一调用的一部分返回,而不必进行两次调用?

最佳答案

您将不得不使用 findandModify() .

来自文档:

Modifies and returns a single document. By default, the returned document does not include the modifications made on the update. To return the document with the modifications made on the update, use the new option. The findAndModify() method is a shell helper around the findAndModify command.

你可以这样使用:

db.yourCollection.findAndModify({
query:{},
update: { $inc: { propertyToIncrement: 1 }},
new: true
})

关于mongodb - MongoDb 可以返回增量结果吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33761329/

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