MongoEngine指定ID

发布于 2024-11-06 21:20:18 字数 124 浏览 1 评论 0原文

我无法让 MongoEngine 接受特定 ID。看起来绝对决定使用(并且只使用)ObjectId。在这种情况下,我完全能够生成自己的 ID,谢谢。

如何让 MongoEngine 发挥出色?

I'm having trouble getting MongoEngine to accept specific IDs. It seems absolutely determined to use (and only use) ObjectIds. I'm more than able to generate my own IDs in this instance, thanks.

How can I get MongoEngine to play nice?

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

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

发布评论

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

评论(1

澉约 2024-11-13 21:20:18

我设法通过在类中添加以下内容来解决这个问题:

id = mongoengine.StringField(required=True, primary_key=True)

不确定这是否是“正确”的做事方式,所以我暂时不回答这个问题。

I managed to solve this by adding the following to the class:

id = mongoengine.StringField(required=True, primary_key=True)

Not sure if this is the "proper" way of doing things, so ill leave this unanswered for a bit.

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