在定义了一个文档,创建了一个实例,并在该实例上调用保存方法后,有什么最好的方法可以确保文档的保存成功?
我应该实现post_save方法,使用tryexcept块,还是有更好的方法?
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
块来处理错误。