MongoEngine--如何确保文档已被保存?

问题描述 投票:0回答:1

在定义了一个文档,创建了一个实例,并在该实例上调用保存方法后,有什么最好的方法可以确保文档的保存成功?

我应该实现post_save方法,使用tryexcept块,还是有更好的方法?

python mongoengine
1个回答
1
投票

save() 是一个同步调用。

Save the :class:`~mongoengine.Document` to the database. If the
document already exists, it will be updated, otherwise it will be
created. Returns the saved object instance.

使用 "post_save "是一个同步调用: try/except 块来处理错误。

© www.soinside.com 2019 - 2024. All rights reserved.