mongodb $ inc value by 1并设置最大值
我有一个问题,我需要将DB中的字段增加1个,这很好,我知道该怎么做,但是我需要将最大设置为5,我的意思是,如果DB中的值为5,请不要将值更新为6 ,我有此代码:
collectionName.update({
name: { $in: namesField },
}, { $inc: { fieldName: 1 } }, { multi: true });
我尝试了这一代码,但没有用:
collectionName.update({
name: { $in: namesField },
}, { fieldName: { $lt: 6 }, { $inc: { fieldName: 1 } }, { multi: true });
谢谢您的每个想法
i have a question, I need to increment a field in DB by 1, thats fine i know how to do it, but i need to set max to 5, i mean it like if value in DB is 5, dont update value to 6, i have this code:
collectionName.update({
name: { $in: namesField },
}, { $inc: { fieldName: 1 } }, { multi: true });
i tried this one and many others, but does not work:
collectionName.update({
name: { $in: namesField },
}, { fieldName: { $lt: 6 }, { $inc: { fieldName: 1 } }, { multi: true });
Thank you for every idea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是一个只查找相关文档的问题,即 fieldName 小于 5,然后仅更新它们,正如您所尝试的那样。但查找部分应该在第一个参数上,因为
update
语法需要query
、update
、options
、如此处所示It is just a matter of finding only relevant documents, i.e. with fieldName smaller than 5, and then update only them, as you tried. But the finding part should be on the first argument, since the
update
syntax expectingquery
,update
,options
, as can be seen here