request-response.txt 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146
  1. ============================
  2. Request and response objects
  3. ============================
  4. .. module:: django.http
  5. :synopsis: Classes dealing with HTTP requests and responses.
  6. Quick overview
  7. ==============
  8. Django uses request and response objects to pass state through the system.
  9. When a page is requested, Django creates an :class:`HttpRequest` object that
  10. contains metadata about the request. Then Django loads the appropriate view,
  11. passing the :class:`HttpRequest` as the first argument to the view function.
  12. Each view is responsible for returning an :class:`HttpResponse` object.
  13. This document explains the APIs for :class:`HttpRequest` and
  14. :class:`HttpResponse` objects, which are defined in the :mod:`django.http`
  15. module.
  16. ``HttpRequest`` objects
  17. =======================
  18. .. class:: HttpRequest
  19. .. _httprequest-attributes:
  20. Attributes
  21. ----------
  22. All attributes should be considered read-only, unless stated otherwise.
  23. .. attribute:: HttpRequest.scheme
  24. A string representing the scheme of the request (``http`` or ``https``
  25. usually).
  26. .. attribute:: HttpRequest.body
  27. The raw HTTP request body as a bytestring. This is useful for processing
  28. data in different ways than conventional HTML forms: binary images,
  29. XML payload etc. For processing conventional form data, use
  30. :attr:`HttpRequest.POST`.
  31. You can also read from an ``HttpRequest`` using a file-like interface. See
  32. :meth:`HttpRequest.read()`.
  33. .. attribute:: HttpRequest.path
  34. A string representing the full path to the requested page, not including
  35. the scheme or domain.
  36. Example: ``"/music/bands/the_beatles/"``
  37. .. attribute:: HttpRequest.path_info
  38. Under some Web server configurations, the portion of the URL after the
  39. host name is split up into a script prefix portion and a path info
  40. portion. The ``path_info`` attribute always contains the path info portion
  41. of the path, no matter what Web server is being used. Using this instead
  42. of :attr:`~HttpRequest.path` can make your code easier to move between
  43. test and deployment servers.
  44. For example, if the ``WSGIScriptAlias`` for your application is set to
  45. ``"/minfo"``, then ``path`` might be ``"/minfo/music/bands/the_beatles/"``
  46. and ``path_info`` would be ``"/music/bands/the_beatles/"``.
  47. .. attribute:: HttpRequest.method
  48. A string representing the HTTP method used in the request. This is
  49. guaranteed to be uppercase. For example::
  50. if request.method == 'GET':
  51. do_something()
  52. elif request.method == 'POST':
  53. do_something_else()
  54. .. attribute:: HttpRequest.encoding
  55. A string representing the current encoding used to decode form submission
  56. data (or ``None``, which means the :setting:`DEFAULT_CHARSET` setting is
  57. used). You can write to this attribute to change the encoding used when
  58. accessing the form data. Any subsequent attribute accesses (such as reading
  59. from :attr:`GET` or :attr:`POST`) will use the new ``encoding`` value.
  60. Useful if you know the form data is not in the :setting:`DEFAULT_CHARSET`
  61. encoding.
  62. .. attribute:: HttpRequest.content_type
  63. A string representing the MIME type of the request, parsed from the
  64. ``CONTENT_TYPE`` header.
  65. .. attribute:: HttpRequest.content_params
  66. A dictionary of key/value parameters included in the ``CONTENT_TYPE``
  67. header.
  68. .. attribute:: HttpRequest.GET
  69. A dictionary-like object containing all given HTTP GET parameters. See the
  70. :class:`QueryDict` documentation below.
  71. .. attribute:: HttpRequest.POST
  72. A dictionary-like object containing all given HTTP POST parameters,
  73. providing that the request contains form data. See the
  74. :class:`QueryDict` documentation below. If you need to access raw or
  75. non-form data posted in the request, access this through the
  76. :attr:`HttpRequest.body` attribute instead.
  77. It's possible that a request can come in via POST with an empty ``POST``
  78. dictionary -- if, say, a form is requested via the POST HTTP method but
  79. does not include form data. Therefore, you shouldn't use ``if request.POST``
  80. to check for use of the POST method; instead, use ``if request.method ==
  81. "POST"`` (see :attr:`HttpRequest.method`).
  82. ``POST`` does *not* include file-upload information. See :attr:`FILES`.
  83. .. attribute:: HttpRequest.COOKIES
  84. A dictionary containing all cookies. Keys and values are strings.
  85. .. attribute:: HttpRequest.FILES
  86. A dictionary-like object containing all uploaded files. Each key in
  87. ``FILES`` is the ``name`` from the ``<input type="file" name="">``. Each
  88. value in ``FILES`` is an :class:`~django.core.files.uploadedfile.UploadedFile`.
  89. See :doc:`/topics/files` for more information.
  90. ``FILES`` will only contain data if the request method was POST and the
  91. ``<form>`` that posted to the request had ``enctype="multipart/form-data"``.
  92. Otherwise, ``FILES`` will be a blank dictionary-like object.
  93. .. attribute:: HttpRequest.META
  94. A dictionary containing all available HTTP headers. Available headers
  95. depend on the client and server, but here are some examples:
  96. * ``CONTENT_LENGTH`` -- The length of the request body (as a string).
  97. * ``CONTENT_TYPE`` -- The MIME type of the request body.
  98. * ``HTTP_ACCEPT`` -- Acceptable content types for the response.
  99. * ``HTTP_ACCEPT_ENCODING`` -- Acceptable encodings for the response.
  100. * ``HTTP_ACCEPT_LANGUAGE`` -- Acceptable languages for the response.
  101. * ``HTTP_HOST`` -- The HTTP Host header sent by the client.
  102. * ``HTTP_REFERER`` -- The referring page, if any.
  103. * ``HTTP_USER_AGENT`` -- The client's user-agent string.
  104. * ``QUERY_STRING`` -- The query string, as a single (unparsed) string.
  105. * ``REMOTE_ADDR`` -- The IP address of the client.
  106. * ``REMOTE_HOST`` -- The hostname of the client.
  107. * ``REMOTE_USER`` -- The user authenticated by the Web server, if any.
  108. * ``REQUEST_METHOD`` -- A string such as ``"GET"`` or ``"POST"``.
  109. * ``SERVER_NAME`` -- The hostname of the server.
  110. * ``SERVER_PORT`` -- The port of the server (as a string).
  111. With the exception of ``CONTENT_LENGTH`` and ``CONTENT_TYPE``, as given
  112. above, any HTTP headers in the request are converted to ``META`` keys by
  113. converting all characters to uppercase, replacing any hyphens with
  114. underscores and adding an ``HTTP_`` prefix to the name. So, for example, a
  115. header called ``X-Bender`` would be mapped to the ``META`` key
  116. ``HTTP_X_BENDER``.
  117. Note that :djadmin:`runserver` strips all headers with underscores in the
  118. name, so you won't see them in ``META``. This prevents header-spoofing
  119. based on ambiguity between underscores and dashes both being normalizing to
  120. underscores in WSGI environment variables. It matches the behavior of
  121. Web servers like Nginx and Apache 2.4+.
  122. :attr:`HttpRequest.headers` is a simpler way to access all HTTP-prefixed
  123. headers, plus ``CONTENT_LENGTH`` and ``CONTENT_TYPE``.
  124. .. attribute:: HttpRequest.headers
  125. A case insensitive, dict-like object that provides access to all
  126. HTTP-prefixed headers (plus ``Content-Length`` and ``Content-Type``) from
  127. the request.
  128. The name of each header is stylized with title-casing (e.g. ``User-Agent``)
  129. when it's displayed. You can access headers case-insensitively::
  130. >>> request.headers
  131. {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6', ...}
  132. >>> 'User-Agent' in request.headers
  133. True
  134. >>> 'user-agent' in request.headers
  135. True
  136. >>> request.headers['User-Agent']
  137. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  138. >>> request.headers['user-agent']
  139. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  140. >>> request.headers.get('User-Agent')
  141. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  142. >>> request.headers.get('user-agent')
  143. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  144. For use in, for example, Django templates, headers can also be looked up
  145. using underscores in place of hyphens::
  146. {{ request.headers.user_agent }}
  147. .. versionchanged:: 3.0
  148. Support for look ups using underscores was added.
  149. .. attribute:: HttpRequest.resolver_match
  150. An instance of :class:`~django.urls.ResolverMatch` representing the
  151. resolved URL. This attribute is only set after URL resolving took place,
  152. which means it's available in all views but not in middleware which are
  153. executed before URL resolving takes place (you can use it in
  154. :meth:`process_view` though).
  155. Attributes set by application code
  156. ----------------------------------
  157. Django doesn't set these attributes itself but makes use of them if set by your
  158. application.
  159. .. attribute:: HttpRequest.current_app
  160. The :ttag:`url` template tag will use its value as the ``current_app``
  161. argument to :func:`~django.urls.reverse()`.
  162. .. attribute:: HttpRequest.urlconf
  163. This will be used as the root URLconf for the current request, overriding
  164. the :setting:`ROOT_URLCONF` setting. See
  165. :ref:`how-django-processes-a-request` for details.
  166. ``urlconf`` can be set to ``None`` to revert any changes made by previous
  167. middleware and return to using the :setting:`ROOT_URLCONF`.
  168. Attributes set by middleware
  169. ----------------------------
  170. Some of the middleware included in Django's contrib apps set attributes on the
  171. request. If you don't see the attribute on a request, be sure the appropriate
  172. middleware class is listed in :setting:`MIDDLEWARE`.
  173. .. attribute:: HttpRequest.session
  174. From the :class:`~django.contrib.sessions.middleware.SessionMiddleware`: A
  175. readable and writable, dictionary-like object that represents the current
  176. session.
  177. .. attribute:: HttpRequest.site
  178. From the :class:`~django.contrib.sites.middleware.CurrentSiteMiddleware`:
  179. An instance of :class:`~django.contrib.sites.models.Site` or
  180. :class:`~django.contrib.sites.requests.RequestSite` as returned by
  181. :func:`~django.contrib.sites.shortcuts.get_current_site()`
  182. representing the current site.
  183. .. attribute:: HttpRequest.user
  184. From the :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`:
  185. An instance of :setting:`AUTH_USER_MODEL` representing the currently
  186. logged-in user. If the user isn't currently logged in, ``user`` will be set
  187. to an instance of :class:`~django.contrib.auth.models.AnonymousUser`. You
  188. can tell them apart with
  189. :attr:`~django.contrib.auth.models.User.is_authenticated`, like so::
  190. if request.user.is_authenticated:
  191. ... # Do something for logged-in users.
  192. else:
  193. ... # Do something for anonymous users.
  194. Methods
  195. -------
  196. .. method:: HttpRequest.get_host()
  197. Returns the originating host of the request using information from the
  198. ``HTTP_X_FORWARDED_HOST`` (if :setting:`USE_X_FORWARDED_HOST` is enabled)
  199. and ``HTTP_HOST`` headers, in that order. If they don't provide a value,
  200. the method uses a combination of ``SERVER_NAME`` and ``SERVER_PORT`` as
  201. detailed in :pep:`3333`.
  202. Example: ``"127.0.0.1:8000"``
  203. .. note:: The :meth:`~HttpRequest.get_host()` method fails when the host is
  204. behind multiple proxies. One solution is to use middleware to rewrite
  205. the proxy headers, as in the following example::
  206. from django.utils.deprecation import MiddlewareMixin
  207. class MultipleProxyMiddleware(MiddlewareMixin):
  208. FORWARDED_FOR_FIELDS = [
  209. 'HTTP_X_FORWARDED_FOR',
  210. 'HTTP_X_FORWARDED_HOST',
  211. 'HTTP_X_FORWARDED_SERVER',
  212. ]
  213. def process_request(self, request):
  214. """
  215. Rewrites the proxy headers so that only the most
  216. recent proxy is used.
  217. """
  218. for field in self.FORWARDED_FOR_FIELDS:
  219. if field in request.META:
  220. if ',' in request.META[field]:
  221. parts = request.META[field].split(',')
  222. request.META[field] = parts[-1].strip()
  223. This middleware should be positioned before any other middleware that
  224. relies on the value of :meth:`~HttpRequest.get_host()` -- for instance,
  225. :class:`~django.middleware.common.CommonMiddleware` or
  226. :class:`~django.middleware.csrf.CsrfViewMiddleware`.
  227. .. method:: HttpRequest.get_port()
  228. Returns the originating port of the request using information from the
  229. ``HTTP_X_FORWARDED_PORT`` (if :setting:`USE_X_FORWARDED_PORT` is enabled)
  230. and ``SERVER_PORT`` ``META`` variables, in that order.
  231. .. method:: HttpRequest.get_full_path()
  232. Returns the ``path``, plus an appended query string, if applicable.
  233. Example: ``"/music/bands/the_beatles/?print=true"``
  234. .. method:: HttpRequest.get_full_path_info()
  235. Like :meth:`get_full_path`, but uses :attr:`path_info` instead of
  236. :attr:`path`.
  237. Example: ``"/minfo/music/bands/the_beatles/?print=true"``
  238. .. method:: HttpRequest.build_absolute_uri(location=None)
  239. Returns the absolute URI form of ``location``. If no location is provided,
  240. the location will be set to ``request.get_full_path()``.
  241. If the location is already an absolute URI, it will not be altered.
  242. Otherwise the absolute URI is built using the server variables available in
  243. this request. For example:
  244. >>> request.build_absolute_uri()
  245. 'https://example.com/music/bands/the_beatles/?print=true'
  246. >>> request.build_absolute_uri('/bands/')
  247. 'https://example.com/bands/'
  248. >>> request.build_absolute_uri('https://example2.com/bands/')
  249. 'https://example2.com/bands/'
  250. .. note::
  251. Mixing HTTP and HTTPS on the same site is discouraged, therefore
  252. :meth:`~HttpRequest.build_absolute_uri()` will always generate an
  253. absolute URI with the same scheme the current request has. If you need
  254. to redirect users to HTTPS, it's best to let your Web server redirect
  255. all HTTP traffic to HTTPS.
  256. .. method:: HttpRequest.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None)
  257. Returns a cookie value for a signed cookie, or raises a
  258. ``django.core.signing.BadSignature`` exception if the signature is
  259. no longer valid. If you provide the ``default`` argument the exception
  260. will be suppressed and that default value will be returned instead.
  261. The optional ``salt`` argument can be used to provide extra protection
  262. against brute force attacks on your secret key. If supplied, the
  263. ``max_age`` argument will be checked against the signed timestamp
  264. attached to the cookie value to ensure the cookie is not older than
  265. ``max_age`` seconds.
  266. For example::
  267. >>> request.get_signed_cookie('name')
  268. 'Tony'
  269. >>> request.get_signed_cookie('name', salt='name-salt')
  270. 'Tony' # assuming cookie was set using the same salt
  271. >>> request.get_signed_cookie('nonexistent-cookie')
  272. ...
  273. KeyError: 'nonexistent-cookie'
  274. >>> request.get_signed_cookie('nonexistent-cookie', False)
  275. False
  276. >>> request.get_signed_cookie('cookie-that-was-tampered-with')
  277. ...
  278. BadSignature: ...
  279. >>> request.get_signed_cookie('name', max_age=60)
  280. ...
  281. SignatureExpired: Signature age 1677.3839159 > 60 seconds
  282. >>> request.get_signed_cookie('name', False, max_age=60)
  283. False
  284. See :doc:`cryptographic signing </topics/signing>` for more information.
  285. .. method:: HttpRequest.is_secure()
  286. Returns ``True`` if the request is secure; that is, if it was made with
  287. HTTPS.
  288. .. method:: HttpRequest.is_ajax()
  289. Returns ``True`` if the request was made via an ``XMLHttpRequest``, by
  290. checking the ``HTTP_X_REQUESTED_WITH`` header for the string
  291. ``'XMLHttpRequest'``. Most modern JavaScript libraries send this header.
  292. If you write your own ``XMLHttpRequest`` call (on the browser side), you'll
  293. have to set this header manually if you want ``is_ajax()`` to work.
  294. If a response varies on whether or not it's requested via AJAX and you are
  295. using some form of caching like Django's :mod:`cache middleware
  296. <django.middleware.cache>`, you should decorate the view with
  297. :func:`vary_on_headers('X-Requested-With')
  298. <django.views.decorators.vary.vary_on_headers>` so that the responses are
  299. properly cached.
  300. .. method:: HttpRequest.read(size=None)
  301. .. method:: HttpRequest.readline()
  302. .. method:: HttpRequest.readlines()
  303. .. method:: HttpRequest.__iter__()
  304. Methods implementing a file-like interface for reading from an
  305. ``HttpRequest`` instance. This makes it possible to consume an incoming
  306. request in a streaming fashion. A common use-case would be to process a
  307. big XML payload with an iterative parser without constructing a whole
  308. XML tree in memory.
  309. Given this standard interface, an ``HttpRequest`` instance can be
  310. passed directly to an XML parser such as
  311. :class:`~xml.etree.ElementTree.ElementTree`::
  312. import xml.etree.ElementTree as ET
  313. for element in ET.iterparse(request):
  314. process(element)
  315. ``QueryDict`` objects
  316. =====================
  317. .. class:: QueryDict
  318. In an :class:`HttpRequest` object, the :attr:`~HttpRequest.GET` and
  319. :attr:`~HttpRequest.POST` attributes are instances of ``django.http.QueryDict``,
  320. a dictionary-like class customized to deal with multiple values for the same
  321. key. This is necessary because some HTML form elements, notably
  322. ``<select multiple>``, pass multiple values for the same key.
  323. The ``QueryDict``\ s at ``request.POST`` and ``request.GET`` will be immutable
  324. when accessed in a normal request/response cycle. To get a mutable version you
  325. need to use :meth:`QueryDict.copy`.
  326. Methods
  327. -------
  328. :class:`QueryDict` implements all the standard dictionary methods because it's
  329. a subclass of dictionary. Exceptions are outlined here:
  330. .. method:: QueryDict.__init__(query_string=None, mutable=False, encoding=None)
  331. Instantiates a ``QueryDict`` object based on ``query_string``.
  332. >>> QueryDict('a=1&a=2&c=3')
  333. <QueryDict: {'a': ['1', '2'], 'c': ['3']}>
  334. If ``query_string`` is not passed in, the resulting ``QueryDict`` will be
  335. empty (it will have no keys or values).
  336. Most ``QueryDict``\ s you encounter, and in particular those at
  337. ``request.POST`` and ``request.GET``, will be immutable. If you are
  338. instantiating one yourself, you can make it mutable by passing
  339. ``mutable=True`` to its ``__init__()``.
  340. Strings for setting both keys and values will be converted from ``encoding``
  341. to ``str``. If ``encoding`` is not set, it defaults to
  342. :setting:`DEFAULT_CHARSET`.
  343. .. classmethod:: QueryDict.fromkeys(iterable, value='', mutable=False, encoding=None)
  344. Creates a new ``QueryDict`` with keys from ``iterable`` and each value
  345. equal to ``value``. For example::
  346. >>> QueryDict.fromkeys(['a', 'a', 'b'], value='val')
  347. <QueryDict: {'a': ['val', 'val'], 'b': ['val']}>
  348. .. method:: QueryDict.__getitem__(key)
  349. Returns the value for the given key. If the key has more than one value,
  350. it returns the last value. Raises
  351. ``django.utils.datastructures.MultiValueDictKeyError`` if the key does not
  352. exist. (This is a subclass of Python's standard :exc:`KeyError`, so you can
  353. stick to catching ``KeyError``.)
  354. .. method:: QueryDict.__setitem__(key, value)
  355. Sets the given key to ``[value]`` (a list whose single element is
  356. ``value``). Note that this, as other dictionary functions that have side
  357. effects, can only be called on a mutable ``QueryDict`` (such as one that
  358. was created via :meth:`QueryDict.copy`).
  359. .. method:: QueryDict.__contains__(key)
  360. Returns ``True`` if the given key is set. This lets you do, e.g., ``if "foo"
  361. in request.GET``.
  362. .. method:: QueryDict.get(key, default=None)
  363. Uses the same logic as :meth:`__getitem__`, with a hook for returning a
  364. default value if the key doesn't exist.
  365. .. method:: QueryDict.setdefault(key, default=None)
  366. Like :meth:`dict.setdefault`, except it uses :meth:`__setitem__` internally.
  367. .. method:: QueryDict.update(other_dict)
  368. Takes either a ``QueryDict`` or a dictionary. Like :meth:`dict.update`,
  369. except it *appends* to the current dictionary items rather than replacing
  370. them. For example::
  371. >>> q = QueryDict('a=1', mutable=True)
  372. >>> q.update({'a': '2'})
  373. >>> q.getlist('a')
  374. ['1', '2']
  375. >>> q['a'] # returns the last
  376. '2'
  377. .. method:: QueryDict.items()
  378. Like :meth:`dict.items`, except this uses the same last-value logic as
  379. :meth:`__getitem__` and returns an iterator object instead of a view object.
  380. For example::
  381. >>> q = QueryDict('a=1&a=2&a=3')
  382. >>> list(q.items())
  383. [('a', '3')]
  384. .. method:: QueryDict.values()
  385. Like :meth:`dict.values`, except this uses the same last-value logic as
  386. :meth:`__getitem__` and returns an iterator instead of a view object. For
  387. example::
  388. >>> q = QueryDict('a=1&a=2&a=3')
  389. >>> list(q.values())
  390. ['3']
  391. In addition, ``QueryDict`` has the following methods:
  392. .. method:: QueryDict.copy()
  393. Returns a copy of the object using :func:`copy.deepcopy`. This copy will
  394. be mutable even if the original was not.
  395. .. method:: QueryDict.getlist(key, default=None)
  396. Returns a list of the data with the requested key. Returns an empty list if
  397. the key doesn't exist and a default value wasn't provided. It's guaranteed
  398. to return a list unless the default value provided isn't a list.
  399. .. method:: QueryDict.setlist(key, list_)
  400. Sets the given key to ``list_`` (unlike :meth:`__setitem__`).
  401. .. method:: QueryDict.appendlist(key, item)
  402. Appends an item to the internal list associated with key.
  403. .. method:: QueryDict.setlistdefault(key, default_list=None)
  404. Like :meth:`setdefault`, except it takes a list of values instead of a
  405. single value.
  406. .. method:: QueryDict.lists()
  407. Like :meth:`items()`, except it includes all values, as a list, for each
  408. member of the dictionary. For example::
  409. >>> q = QueryDict('a=1&a=2&a=3')
  410. >>> q.lists()
  411. [('a', ['1', '2', '3'])]
  412. .. method:: QueryDict.pop(key)
  413. Returns a list of values for the given key and removes them from the
  414. dictionary. Raises ``KeyError`` if the key does not exist. For example::
  415. >>> q = QueryDict('a=1&a=2&a=3', mutable=True)
  416. >>> q.pop('a')
  417. ['1', '2', '3']
  418. .. method:: QueryDict.popitem()
  419. Removes an arbitrary member of the dictionary (since there's no concept
  420. of ordering), and returns a two value tuple containing the key and a list
  421. of all values for the key. Raises ``KeyError`` when called on an empty
  422. dictionary. For example::
  423. >>> q = QueryDict('a=1&a=2&a=3', mutable=True)
  424. >>> q.popitem()
  425. ('a', ['1', '2', '3'])
  426. .. method:: QueryDict.dict()
  427. Returns a ``dict`` representation of ``QueryDict``. For every (key, list)
  428. pair in ``QueryDict``, ``dict`` will have (key, item), where item is one
  429. element of the list, using the same logic as :meth:`QueryDict.__getitem__`::
  430. >>> q = QueryDict('a=1&a=3&a=5')
  431. >>> q.dict()
  432. {'a': '5'}
  433. .. method:: QueryDict.urlencode(safe=None)
  434. Returns a string of the data in query string format. For example::
  435. >>> q = QueryDict('a=2&b=3&b=5')
  436. >>> q.urlencode()
  437. 'a=2&b=3&b=5'
  438. Use the ``safe`` parameter to pass characters which don't require encoding.
  439. For example::
  440. >>> q = QueryDict(mutable=True)
  441. >>> q['next'] = '/a&b/'
  442. >>> q.urlencode(safe='/')
  443. 'next=/a%26b/'
  444. ``HttpResponse`` objects
  445. ========================
  446. .. class:: HttpResponse
  447. In contrast to :class:`HttpRequest` objects, which are created automatically by
  448. Django, :class:`HttpResponse` objects are your responsibility. Each view you
  449. write is responsible for instantiating, populating, and returning an
  450. :class:`HttpResponse`.
  451. The :class:`HttpResponse` class lives in the :mod:`django.http` module.
  452. Usage
  453. -----
  454. Passing strings
  455. ~~~~~~~~~~~~~~~
  456. Typical usage is to pass the contents of the page, as a string, bytestring,
  457. or :class:`memoryview`, to the :class:`HttpResponse` constructor::
  458. >>> from django.http import HttpResponse
  459. >>> response = HttpResponse("Here's the text of the Web page.")
  460. >>> response = HttpResponse("Text only, please.", content_type="text/plain")
  461. >>> response = HttpResponse(b'Bytestrings are also accepted.')
  462. >>> response = HttpResponse(memoryview(b'Memoryview as well.'))
  463. .. versionchanged:: 3.0
  464. Support for :class:`memoryview` was added.
  465. But if you want to add content incrementally, you can use ``response`` as a
  466. file-like object::
  467. >>> response = HttpResponse()
  468. >>> response.write("<p>Here's the text of the Web page.</p>")
  469. >>> response.write("<p>Here's another paragraph.</p>")
  470. Passing iterators
  471. ~~~~~~~~~~~~~~~~~
  472. Finally, you can pass ``HttpResponse`` an iterator rather than strings.
  473. ``HttpResponse`` will consume the iterator immediately, store its content as a
  474. string, and discard it. Objects with a ``close()`` method such as files and
  475. generators are immediately closed.
  476. If you need the response to be streamed from the iterator to the client, you
  477. must use the :class:`StreamingHttpResponse` class instead.
  478. Setting header fields
  479. ~~~~~~~~~~~~~~~~~~~~~
  480. To set or remove a header field in your response, treat it like a dictionary::
  481. >>> response = HttpResponse()
  482. >>> response['Age'] = 120
  483. >>> del response['Age']
  484. Note that unlike a dictionary, ``del`` doesn't raise ``KeyError`` if the header
  485. field doesn't exist.
  486. For setting the ``Cache-Control`` and ``Vary`` header fields, it is recommended
  487. to use the :func:`~django.utils.cache.patch_cache_control` and
  488. :func:`~django.utils.cache.patch_vary_headers` methods from
  489. :mod:`django.utils.cache`, since these fields can have multiple, comma-separated
  490. values. The "patch" methods ensure that other values, e.g. added by a
  491. middleware, are not removed.
  492. HTTP header fields cannot contain newlines. An attempt to set a header field
  493. containing a newline character (CR or LF) will raise ``BadHeaderError``
  494. Telling the browser to treat the response as a file attachment
  495. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  496. To tell the browser to treat the response as a file attachment, use the
  497. ``content_type`` argument and set the ``Content-Disposition`` header. For example,
  498. this is how you might return a Microsoft Excel spreadsheet::
  499. >>> response = HttpResponse(my_data, content_type='application/vnd.ms-excel')
  500. >>> response['Content-Disposition'] = 'attachment; filename="foo.xls"'
  501. There's nothing Django-specific about the ``Content-Disposition`` header, but
  502. it's easy to forget the syntax, so we've included it here.
  503. Attributes
  504. ----------
  505. .. attribute:: HttpResponse.content
  506. A bytestring representing the content, encoded from a string if necessary.
  507. .. attribute:: HttpResponse.charset
  508. A string denoting the charset in which the response will be encoded. If not
  509. given at ``HttpResponse`` instantiation time, it will be extracted from
  510. ``content_type`` and if that is unsuccessful, the
  511. :setting:`DEFAULT_CHARSET` setting will be used.
  512. .. attribute:: HttpResponse.status_code
  513. The :rfc:`HTTP status code <7231#section-6>` for the response.
  514. Unless :attr:`reason_phrase` is explicitly set, modifying the value of
  515. ``status_code`` outside the constructor will also modify the value of
  516. ``reason_phrase``.
  517. .. attribute:: HttpResponse.reason_phrase
  518. The HTTP reason phrase for the response. It uses the :rfc:`HTTP standard's
  519. <7231#section-6.1>` default reason phrases.
  520. Unless explicitly set, ``reason_phrase`` is determined by the value of
  521. :attr:`status_code`.
  522. .. attribute:: HttpResponse.streaming
  523. This is always ``False``.
  524. This attribute exists so middleware can treat streaming responses
  525. differently from regular responses.
  526. .. attribute:: HttpResponse.closed
  527. ``True`` if the response has been closed.
  528. Methods
  529. -------
  530. .. method:: HttpResponse.__init__(content=b'', content_type=None, status=200, reason=None, charset=None)
  531. Instantiates an ``HttpResponse`` object with the given page content and
  532. content type.
  533. ``content`` is most commonly an iterator, bytestring, :class:`memoryview`,
  534. or string. Other types will be converted to a bytestring by encoding their
  535. string representation. Iterators should return strings or bytestrings and
  536. those will be joined together to form the content of the response.
  537. ``content_type`` is the MIME type optionally completed by a character set
  538. encoding and is used to fill the HTTP ``Content-Type`` header. If not
  539. specified, it is formed by ``'text/html'`` and the
  540. :setting:`DEFAULT_CHARSET` settings, by default: "`text/html; charset=utf-8`".
  541. ``status`` is the :rfc:`HTTP status code <7231#section-6>` for the response.
  542. ``reason`` is the HTTP response phrase. If not provided, a default phrase
  543. will be used.
  544. ``charset`` is the charset in which the response will be encoded. If not
  545. given it will be extracted from ``content_type``, and if that
  546. is unsuccessful, the :setting:`DEFAULT_CHARSET` setting will be used.
  547. .. versionchanged:: 3.0
  548. Support for :class:`memoryview` ``content`` was added.
  549. .. method:: HttpResponse.__setitem__(header, value)
  550. Sets the given header name to the given value. Both ``header`` and
  551. ``value`` should be strings.
  552. .. method:: HttpResponse.__delitem__(header)
  553. Deletes the header with the given name. Fails silently if the header
  554. doesn't exist. Case-insensitive.
  555. .. method:: HttpResponse.__getitem__(header)
  556. Returns the value for the given header name. Case-insensitive.
  557. .. method:: HttpResponse.has_header(header)
  558. Returns ``True`` or ``False`` based on a case-insensitive check for a
  559. header with the given name.
  560. .. method:: HttpResponse.setdefault(header, value)
  561. Sets a header unless it has already been set.
  562. .. method:: HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False, samesite=None)
  563. Sets a cookie. The parameters are the same as in the
  564. :class:`~http.cookies.Morsel` cookie object in the Python standard library.
  565. * ``max_age`` should be a number of seconds, or ``None`` (default) if
  566. the cookie should last only as long as the client's browser session.
  567. If ``expires`` is not specified, it will be calculated.
  568. * ``expires`` should either be a string in the format
  569. ``"Wdy, DD-Mon-YY HH:MM:SS GMT"`` or a ``datetime.datetime`` object
  570. in UTC. If ``expires`` is a ``datetime`` object, the ``max_age``
  571. will be calculated.
  572. * Use ``domain`` if you want to set a cross-domain cookie. For example,
  573. ``domain="example.com"`` will set a cookie that is readable by the
  574. domains www.example.com, blog.example.com, etc. Otherwise, a cookie will
  575. only be readable by the domain that set it.
  576. * Use ``httponly=True`` if you want to prevent client-side
  577. JavaScript from having access to the cookie.
  578. HttpOnly_ is a flag included in a Set-Cookie HTTP response header. It's
  579. part of the :rfc:`6265` standard for cookies and can be a useful way to
  580. mitigate the risk of a client-side script accessing the protected cookie
  581. data.
  582. * Use ``samesite='Strict'`` or ``samesite='Lax'`` to tell the browser not
  583. to send this cookie when performing a cross-origin request. `SameSite`_
  584. isn't supported by all browsers, so it's not a replacement for Django's
  585. CSRF protection, but rather a defense in depth measure.
  586. .. _HttpOnly: https://www.owasp.org/index.php/HttpOnly
  587. .. _SameSite: https://www.owasp.org/index.php/SameSite
  588. .. warning::
  589. :rfc:`6265` states that user agents should support cookies of at least
  590. 4096 bytes. For many browsers this is also the maximum size. Django
  591. will not raise an exception if there's an attempt to store a cookie of
  592. more than 4096 bytes, but many browsers will not set the cookie
  593. correctly.
  594. .. method:: HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False, samesite=None)
  595. Like :meth:`~HttpResponse.set_cookie()`, but
  596. :doc:`cryptographic signing </topics/signing>` the cookie before setting
  597. it. Use in conjunction with :meth:`HttpRequest.get_signed_cookie`.
  598. You can use the optional ``salt`` argument for added key strength, but
  599. you will need to remember to pass it to the corresponding
  600. :meth:`HttpRequest.get_signed_cookie` call.
  601. .. method:: HttpResponse.delete_cookie(key, path='/', domain=None)
  602. Deletes the cookie with the given key. Fails silently if the key doesn't
  603. exist.
  604. Due to the way cookies work, ``path`` and ``domain`` should be the same
  605. values you used in ``set_cookie()`` -- otherwise the cookie may not be
  606. deleted.
  607. .. method:: HttpResponse.close()
  608. This method is called at the end of the request directly by the WSGI
  609. server, or when the WSGI server closes the file-like object, if
  610. `wsgi.file_wrapper`_ is used for the request.
  611. .. method:: HttpResponse.write(content)
  612. This method makes an :class:`HttpResponse` instance a file-like object.
  613. .. method:: HttpResponse.flush()
  614. This method makes an :class:`HttpResponse` instance a file-like object.
  615. .. method:: HttpResponse.tell()
  616. This method makes an :class:`HttpResponse` instance a file-like object.
  617. .. method:: HttpResponse.getvalue()
  618. Returns the value of :attr:`HttpResponse.content`. This method makes
  619. an :class:`HttpResponse` instance a stream-like object.
  620. .. method:: HttpResponse.readable()
  621. Always ``False``. This method makes an :class:`HttpResponse` instance a
  622. stream-like object.
  623. .. method:: HttpResponse.seekable()
  624. Always ``False``. This method makes an :class:`HttpResponse` instance a
  625. stream-like object.
  626. .. method:: HttpResponse.writable()
  627. Always ``True``. This method makes an :class:`HttpResponse` instance a
  628. stream-like object.
  629. .. method:: HttpResponse.writelines(lines)
  630. Writes a list of lines to the response. Line separators are not added. This
  631. method makes an :class:`HttpResponse` instance a stream-like object.
  632. .. _ref-httpresponse-subclasses:
  633. ``HttpResponse`` subclasses
  634. ---------------------------
  635. Django includes a number of ``HttpResponse`` subclasses that handle different
  636. types of HTTP responses. Like ``HttpResponse``, these subclasses live in
  637. :mod:`django.http`.
  638. .. class:: HttpResponseRedirect
  639. The first argument to the constructor is required -- the path to redirect
  640. to. This can be a fully qualified URL
  641. (e.g. ``'https://www.yahoo.com/search/'``), an absolute path with no domain
  642. (e.g. ``'/search/'``), or even a relative path (e.g. ``'search/'``). In that
  643. last case, the client browser will reconstruct the full URL itself
  644. according to the current path. See :class:`HttpResponse` for other optional
  645. constructor arguments. Note that this returns an HTTP status code 302.
  646. .. attribute:: HttpResponseRedirect.url
  647. This read-only attribute represents the URL the response will redirect
  648. to (equivalent to the ``Location`` response header).
  649. .. class:: HttpResponsePermanentRedirect
  650. Like :class:`HttpResponseRedirect`, but it returns a permanent redirect
  651. (HTTP status code 301) instead of a "found" redirect (status code 302).
  652. .. class:: HttpResponseNotModified
  653. The constructor doesn't take any arguments and no content should be added
  654. to this response. Use this to designate that a page hasn't been modified
  655. since the user's last request (status code 304).
  656. .. class:: HttpResponseBadRequest
  657. Acts just like :class:`HttpResponse` but uses a 400 status code.
  658. .. class:: HttpResponseNotFound
  659. Acts just like :class:`HttpResponse` but uses a 404 status code.
  660. .. class:: HttpResponseForbidden
  661. Acts just like :class:`HttpResponse` but uses a 403 status code.
  662. .. class:: HttpResponseNotAllowed
  663. Like :class:`HttpResponse`, but uses a 405 status code. The first argument
  664. to the constructor is required: a list of permitted methods (e.g.
  665. ``['GET', 'POST']``).
  666. .. class:: HttpResponseGone
  667. Acts just like :class:`HttpResponse` but uses a 410 status code.
  668. .. class:: HttpResponseServerError
  669. Acts just like :class:`HttpResponse` but uses a 500 status code.
  670. .. note::
  671. If a custom subclass of :class:`HttpResponse` implements a ``render``
  672. method, Django will treat it as emulating a
  673. :class:`~django.template.response.SimpleTemplateResponse`, and the
  674. ``render`` method must itself return a valid response object.
  675. ``JsonResponse`` objects
  676. ========================
  677. .. class:: JsonResponse(data, encoder=DjangoJSONEncoder, safe=True, json_dumps_params=None, **kwargs)
  678. An :class:`HttpResponse` subclass that helps to create a JSON-encoded
  679. response. It inherits most behavior from its superclass with a couple
  680. differences:
  681. Its default ``Content-Type`` header is set to ``application/json``.
  682. The first parameter, ``data``, should be a ``dict`` instance. If the
  683. ``safe`` parameter is set to ``False`` (see below) it can be any
  684. JSON-serializable object.
  685. The ``encoder``, which defaults to
  686. :class:`django.core.serializers.json.DjangoJSONEncoder`, will be used to
  687. serialize the data. See :ref:`JSON serialization
  688. <serialization-formats-json>` for more details about this serializer.
  689. The ``safe`` boolean parameter defaults to ``True``. If it's set to
  690. ``False``, any object can be passed for serialization (otherwise only
  691. ``dict`` instances are allowed). If ``safe`` is ``True`` and a non-``dict``
  692. object is passed as the first argument, a :exc:`TypeError` will be raised.
  693. The ``json_dumps_params`` parameter is a dictionary of keyword arguments
  694. to pass to the ``json.dumps()`` call used to generate the response.
  695. Usage
  696. -----
  697. Typical usage could look like::
  698. >>> from django.http import JsonResponse
  699. >>> response = JsonResponse({'foo': 'bar'})
  700. >>> response.content
  701. b'{"foo": "bar"}'
  702. Serializing non-dictionary objects
  703. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  704. In order to serialize objects other than ``dict`` you must set the ``safe``
  705. parameter to ``False``::
  706. >>> response = JsonResponse([1, 2, 3], safe=False)
  707. Without passing ``safe=False``, a :exc:`TypeError` will be raised.
  708. .. warning::
  709. Before the `5th edition of ECMAScript
  710. <https://www.ecma-international.org/ecma-262/5.1/index.html#sec-11.1.4>`_
  711. it was possible to poison the JavaScript ``Array`` constructor. For this
  712. reason, Django does not allow passing non-dict objects to the
  713. :class:`~django.http.JsonResponse` constructor by default. However, most
  714. modern browsers implement EcmaScript 5 which removes this attack vector.
  715. Therefore it is possible to disable this security precaution.
  716. Changing the default JSON encoder
  717. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  718. If you need to use a different JSON encoder class you can pass the ``encoder``
  719. parameter to the constructor method::
  720. >>> response = JsonResponse(data, encoder=MyJSONEncoder)
  721. .. _httpresponse-streaming:
  722. ``StreamingHttpResponse`` objects
  723. =================================
  724. .. class:: StreamingHttpResponse
  725. The :class:`StreamingHttpResponse` class is used to stream a response from
  726. Django to the browser. You might want to do this if generating the response
  727. takes too long or uses too much memory. For instance, it's useful for
  728. :ref:`generating large CSV files <streaming-csv-files>`.
  729. .. admonition:: Performance considerations
  730. Django is designed for short-lived requests. Streaming responses will tie
  731. a worker process for the entire duration of the response. This may result
  732. in poor performance.
  733. Generally speaking, you should perform expensive tasks outside of the
  734. request-response cycle, rather than resorting to a streamed response.
  735. The :class:`StreamingHttpResponse` is not a subclass of :class:`HttpResponse`,
  736. because it features a slightly different API. However, it is almost identical,
  737. with the following notable differences:
  738. * It should be given an iterator that yields strings as content.
  739. * You cannot access its content, except by iterating the response object
  740. itself. This should only occur when the response is returned to the client.
  741. * It has no ``content`` attribute. Instead, it has a
  742. :attr:`~StreamingHttpResponse.streaming_content` attribute.
  743. * You cannot use the file-like object ``tell()`` or ``write()`` methods.
  744. Doing so will raise an exception.
  745. :class:`StreamingHttpResponse` should only be used in situations where it is
  746. absolutely required that the whole content isn't iterated before transferring
  747. the data to the client. Because the content can't be accessed, many
  748. middleware can't function normally. For example the ``ETag`` and
  749. ``Content-Length`` headers can't be generated for streaming responses.
  750. Attributes
  751. ----------
  752. .. attribute:: StreamingHttpResponse.streaming_content
  753. An iterator of the response content, bytestring encoded according to
  754. :attr:`HttpResponse.charset`.
  755. .. attribute:: StreamingHttpResponse.status_code
  756. The :rfc:`HTTP status code <7231#section-6>` for the response.
  757. Unless :attr:`reason_phrase` is explicitly set, modifying the value of
  758. ``status_code`` outside the constructor will also modify the value of
  759. ``reason_phrase``.
  760. .. attribute:: StreamingHttpResponse.reason_phrase
  761. The HTTP reason phrase for the response. It uses the :rfc:`HTTP standard's
  762. <7231#section-6.1>` default reason phrases.
  763. Unless explicitly set, ``reason_phrase`` is determined by the value of
  764. :attr:`status_code`.
  765. .. attribute:: StreamingHttpResponse.streaming
  766. This is always ``True``.
  767. ``FileResponse`` objects
  768. ========================
  769. .. class:: FileResponse(open_file, as_attachment=False, filename='', **kwargs)
  770. :class:`FileResponse` is a subclass of :class:`StreamingHttpResponse`
  771. optimized for binary files. It uses `wsgi.file_wrapper`_ if provided by the
  772. wsgi server, otherwise it streams the file out in small chunks.
  773. If ``as_attachment=True``, the ``Content-Disposition`` header is set to
  774. ``attachment``, which asks the browser to offer the file to the user as a
  775. download. Otherwise, a ``Content-Disposition`` header with a value of
  776. ``inline`` (the browser default) will be set only if a filename is
  777. available.
  778. If ``open_file`` doesn't have a name or if the name of ``open_file`` isn't
  779. appropriate, provide a custom file name using the ``filename`` parameter.
  780. Note that if you pass a file-like object like ``io.BytesIO``, it's your
  781. task to ``seek()`` it before passing it to ``FileResponse``.
  782. The ``Content-Length`` and ``Content-Type`` headers are automatically set
  783. when they can be guessed from contents of ``open_file``.
  784. .. _wsgi.file_wrapper: https://www.python.org/dev/peps/pep-3333/#optional-platform-specific-file-handling
  785. ``FileResponse`` accepts any file-like object with binary content, for example
  786. a file open in binary mode like so::
  787. >>> from django.http import FileResponse
  788. >>> response = FileResponse(open('myfile.png', 'rb'))
  789. The file will be closed automatically, so don't open it with a context manager.
  790. Methods
  791. -------
  792. .. method:: FileResponse.set_headers(open_file)
  793. This method is automatically called during the response initialization and
  794. set various headers (``Content-Length``, ``Content-Type``, and
  795. ``Content-Disposition``) depending on ``open_file``.