from django.db import transaction
with transaction.atomic():
models.Article.objects.filter(nid=article_id).update(comment_count=F("comment_count")+1)
commentResponse["create_time"]=str(comment_obj.create_time)
print(commentResponse["create_time"])
在执行上下文里面的内容时候时,遇到错误执行回滚操作,类似mysql回滚函数