如何在 mongo 引擎中使用 $ 符号进行多重更新
如何在 .py 文件中使用 mongo 引擎使用 $ 符号进行多重更新,请给出任何小例子。
how can I do multi update with $ symbol with mongo engine in .py file, give any small example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅文档中的原子更新:
Refer to Atomic Updates in the docs:
mongoengine 的测试套件中有示例:
https:// github.com/MongoEngine/mongoengine/blob/master/tests/queryset.py#L313-382
一个简单的例子:
Theres examples in the test suite for mongoengine:
https://github.com/MongoEngine/mongoengine/blob/master/tests/queryset.py#L313-382
A quick example: