django view function

view function 的几种返回值

  1. return HttpResponse(html)
  2. return HttpResponseNotFound(html)
  3. raise Http404("Poll does not exist")
    #定制:在template tree顶层编写404.html
  4. handler400
原文地址:https://www.cnblogs.com/LTEF/p/9736816.html