我想做以下事情:
raise HttpResponseForbidden()
但是我得到了错误:
exceptions must be old-style classes or derived from BaseException, not HttpResponseForbidden
我应该怎么做?
最佳答案
从 View 中将其返回,就像处理其他任何响应一样。
from django.http import HttpResponseForbidden
return HttpResponseForbidden()