使用“.”在 MongoDB (PyMongo) 中的键名称中

发布于 2024-08-30 05:47:44 字数 132 浏览 9 评论 0原文

当我尝试用“.”保存字典时在键中 PyMongo 抛出一个错误(InvaildName),但是我确实看到(在 Mongodb 网站上)键中可以有“.”。为什么 pymongo 不让我保存这些文档?他们和 Mongo 有问题吗?

詹姆斯

When I try saving a dict with a '.' in the key PyMongo throws an error (InvaildName) however I do see (on the Mongodb website) that keys can have '.''s in them. Why is it that pymongo won't let me save these docs? Is there an issue with them and Mongo?

James

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

小清晰的声音 2024-09-06 05:47:44

您在哪里看到带有“.”的文档示例?在一个键名中?这些在 MongoDB 中是无效的(因此 PyMongo 的限制)。

原因是我们在查询中使用点表示法来访问嵌入文档的内部。

Where are you seeing an example of documents with "." in a key name? Those are invalid in MongoDB (hence PyMongo's restriction).

The reasoning is that we use dot notation in queries to reach inside of embedded documents.

狼性发作 2024-09-06 05:47:44

您可以在更新和查找中使用点,但不能在保存/插入中使用点。

You can use the dot in updates and finds, but not in save/insert.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文