request-response.txt 52 KB

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