码迷,mamicode.com
首页 > Web开发 > 详细

django.http.response中HttpResponse 子类

时间:2017-12-16 17:11:27      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:状态   ota   nbsp   http   路径   页面   arc   adr   blog   

HttpResponse的子类

Django包含许多处理不同类型的HTTP请求的 HttpResponse 子类。像 HttpResponse 一样,这些类在 django.http 中。

HttpResponse 子类

类名

描述

HttpResponseRedirect

构造函数的参数有一个:重定向的路径。 它可以是一个完整的URL(例如, ‘http://search.yahoo.com/‘ )或者不包括域名的绝对路径(如 ‘/search/‘ )。 注意它返回 HTTP 状态码 302。

HttpResponsePermanentRedirect

类似 HttpResponseRedirect , 但是它返回一个永久转义 (HTTP状态码 301),而不是暂时性转移(状态码302)。

HttpResponseNotModified

构造函数没有任何参数。用它来表示这个页面在上次请求后未改变。

HttpResponseBadRequest

类似 HttpResponse ,但使用400状态码。

HttpResponseNotFound

类似 HttpResponse ,但使用404状态码。

HttpResponseForbidden

类似 HttpResponse ,但使用403状态码。

HttpResponseNotAllowed

类似 HttpResponse ,但使用405状态码。它必须有一个参数:允许方法的列表。(例如, [‘GET‘, ‘POST‘] )。

HttpResponseGone

类似 HttpResponse ,但使用410状态码。

HttpResponseServerError

类似 HttpResponse ,但使用500状态码。

django.http.response中HttpResponse 子类

标签:状态   ota   nbsp   http   路径   页面   arc   adr   blog   

原文地址:http://www.cnblogs.com/eric_yi/p/8046669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!