django返回HTTP错误

django中开发时不免有路径找不到的情况,它在上线时当然属于HTTP错误。HTTP错误是通过HTTP头的状态表达,搞过一点前端应该能理解。在django中也是同理。比如下面这段代码:

from django.http import HttpResponse

def my_view(request):
	return HttpResponse(status=404)

为了方便重构或者是转向等其他基本主流操作,django又定义了很多子类,分别列举在下面

  • HttpResponseRedirect: 返回Status 302,用于URL重定向,需要将重定向的目标地址作为参数传给该类。
  • HttpResponseNotModified:返回Status 304,用于指示浏览器用其上次请求时的缓存结果作为页面内容显示
  • HttpResponsePermanentRedirect:返回Status 301,与HttpResponseRedirect类似,但是告诉浏览器这是一个永久重定向
  • HttpResponseBadRequest;返回Status 400,请求内容错误
  • HttpResponseForbidden:返回Status 403,禁止访问错误.
  • HttpResponseNotAllowed:返回Status 405,用不允许的方法(Get,Post,Head等),访问本页面
  • HttpResponseServerError: 返回Status 500,服务器内部错误,比如无法处理的异常等。
from django.http import HttpResponse, HttpResponseNotFound
def my_view(request):
    return HttpResponseNotFound()

你可能感兴趣的:(django)