希望问题很清楚。我正在尝试在 model.save() 之后同步处理保存,但由于某些原因我不能使用 django 信号(所以请不要将其作为可能的解决方案提及)
我会 :
def viewfunc(request):
# This code executes in autocommit mode (Django's default).
do_stuff()
with transaction.atomic():
# This code executes inside a transaction.
do_more_stuff()
do_even_more_stuff()
当我运行 do_even_more_stuff() 时,是否可以安全地假设使用 do_more_stuff() 完成的任何 model.save() 已保存到数据库中?