mongodb $ inc value by 1并设置最大值

发布于 2025-01-20 00:17:12 字数 420 浏览 0 评论 0原文

我有一个问题,我需要将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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡水深流 2025-01-27 00:17:12

这只是一个只查找相关文档的问题,即 fieldName 小于 5,然后仅更新它们,正如您所尝试的那样。但查找部分应该在第一个参数上,因为 update 语法需要 queryupdateoptions、如此处所示

  collectionName.update({
  name: { $in: namesField }, fieldName: { $lt: 5 }}, { $inc: { fieldName: 1   } }, { multi: true });

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 expecting query, update, options, as can be seen here

  collectionName.update({
  name: { $in: namesField }, fieldName: { $lt: 5 }}, { $inc: { fieldName: 1   } }, { multi: true });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文