如何将 ObjectId 嵌入到 django nonrel/mongodb-engine 中的模型字段中?
我是 django 的新手,所以我在这里有点迷失,但不知道如何将 ObjectId 字段添加到 django-nonrel 模型中。
我知道联接很糟糕,我应该嵌入子模型,但在这种情况下(作者)这是不可能的,我不想使用字符串来存储它(无论是为了性能还是可移植性)。
自定义字段会将 db_type 设置为“objectid”吗?从我在来源中收集到的信息来看,它期望 objectid 字段只是“pk”。
谢谢,
I'm new to django so I'm a bit lost here but don't see how I can add an ObjectId field to a django-nonrel model.
I know joins are bad and I should embed the submodel but in this case (an author) it's not possible and I don't want to use a string to store it (both for performance and portability).
Would a custom field setting the db_type to "objectid"? From what I can gather in the sources it expect objectid field to only be the "pk".
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了一个解决方案,只需使用ForeignKey字段就可以完美地工作。
Found a solution, simply using the ForeignKey field works perfectly.