gpt4 book ai didi

python - 使用 Mongoengine 进行插入只能从 shell 工作,但不能从 Django View 工作

转载 作者:太空宇宙 更新时间:2023-11-03 19:29:25 29 4
gpt4 key购买 nike

我遇到了奇怪的情况 - 从 Django shell 创建一些 Mongoengine 对象是成功的,但是从 Django View 创建相同的对象看起来成功,但 MongoDB 中没有出现任何数据。 IE。相同的代码 -

from myapp.mongomodels import MyModel

m = MyModel(a=1, b=2, c=3)
m.save()

manage.py shell 运行时生成插入 MongoDB 的新对象,从 Django View 运行时不生成任何内容。我跟踪了代码,发现 mongoengine.Document.save() 方法运行正确,没有任何异常。

看起来我错过了一些明显的事情。

将不胜感激任何帮助。

最佳答案

您应该能够做到这一点,但使用以下方法强制保存:

from myapp.mongomodels import MyModel

m = MyModel(a=1, b=2, c=3)
m.save(force_insert=True)

关于python - 使用 Mongoengine 进行插入只能从 shell 工作,但不能从 Django View 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6692035/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com