template-response.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. ===================================================
  2. ``TemplateResponse`` and ``SimpleTemplateResponse``
  3. ===================================================
  4. .. module:: django.template.response
  5. :synopsis: Classes dealing with lazy-rendered HTTP responses.
  6. Standard :class:`~django.http.HttpResponse` objects are static structures.
  7. They are provided with a block of pre-rendered content at time of
  8. construction, and while that content can be modified, it isn't in a form that
  9. makes it easy to perform modifications.
  10. However, it can sometimes be beneficial to allow decorators or
  11. middleware to modify a response *after* it has been constructed by the
  12. view. For example, you may want to change the template that is used,
  13. or put additional data into the context.
  14. TemplateResponse provides a way to do just that. Unlike basic
  15. :class:`~django.http.HttpResponse` objects, TemplateResponse objects retain
  16. the details of the template and context that was provided by the view to
  17. compute the response. The final output of the response is not computed until
  18. it is needed, later in the response process.
  19. ``SimpleTemplateResponse`` objects
  20. ==================================
  21. .. class:: SimpleTemplateResponse()
  22. Attributes
  23. ----------
  24. .. attribute:: SimpleTemplateResponse.template_name
  25. The name of the template to be rendered. Accepts a backend-dependent
  26. template object (such as those returned by
  27. :func:`~django.template.loader.get_template()`), the name of a template,
  28. or a list of template names.
  29. Example: ``['foo.html', 'path/to/bar.html']``
  30. .. attribute:: SimpleTemplateResponse.context_data
  31. The context data to be used when rendering the template. It must be a
  32. :class:`dict`.
  33. Example: ``{'foo': 123}``
  34. .. attribute:: SimpleTemplateResponse.rendered_content
  35. The current rendered value of the response content, using the current
  36. template and context data.
  37. .. attribute:: SimpleTemplateResponse.is_rendered
  38. A boolean indicating whether the response content has been rendered.
  39. Methods
  40. -------
  41. .. method:: SimpleTemplateResponse.__init__(template, context=None, content_type=None, status=None, charset=None, using=None, headers=None)
  42. Instantiates a :class:`~django.template.response.SimpleTemplateResponse`
  43. object with the given template, context, content type, HTTP status, and
  44. charset.
  45. ``template``
  46. A backend-dependent template object (such as those returned by
  47. :func:`~django.template.loader.get_template()`), the name of a template,
  48. or a list of template names.
  49. ``context``
  50. A :class:`dict` of values to add to the template context. By default,
  51. this is an empty dictionary.
  52. ``content_type``
  53. The value included in the HTTP ``Content-Type`` header, including the
  54. MIME type specification and the character set encoding. If
  55. ``content_type`` is specified, then its value is used. Otherwise,
  56. ``'text/html'`` is used.
  57. ``status``
  58. The HTTP status code for the response.
  59. ``charset``
  60. The charset in which the response will be encoded. If not given it will
  61. be extracted from ``content_type``, and if that is unsuccessful, the
  62. :setting:`DEFAULT_CHARSET` setting will be used.
  63. ``using``
  64. The :setting:`NAME <TEMPLATES-NAME>` of a template engine to use for
  65. loading the template.
  66. ``headers``
  67. A :class:`dict` of HTTP headers to add to the response.
  68. .. versionchanged:: 3.2
  69. The ``headers`` parameter was added.
  70. .. method:: SimpleTemplateResponse.resolve_context(context)
  71. Preprocesses context data that will be used for rendering a template.
  72. Accepts a :class:`dict` of context data. By default, returns the same
  73. :class:`dict`.
  74. Override this method in order to customize the context.
  75. .. method:: SimpleTemplateResponse.resolve_template(template)
  76. Resolves the template instance to use for rendering. Accepts a
  77. backend-dependent template object (such as those returned by
  78. :func:`~django.template.loader.get_template()`), the name of a template,
  79. or a list of template names.
  80. Returns the backend-dependent template object instance to be rendered.
  81. Override this method in order to customize template loading.
  82. .. method:: SimpleTemplateResponse.add_post_render_callback()
  83. Add a callback that will be invoked after rendering has taken
  84. place. This hook can be used to defer certain processing
  85. operations (such as caching) until after rendering has occurred.
  86. If the :class:`~django.template.response.SimpleTemplateResponse`
  87. has already been rendered, the callback will be invoked
  88. immediately.
  89. When called, callbacks will be passed a single argument -- the
  90. rendered :class:`~django.template.response.SimpleTemplateResponse`
  91. instance.
  92. If the callback returns a value that is not ``None``, this will be
  93. used as the response instead of the original response object (and
  94. will be passed to the next post rendering callback etc.)
  95. .. method:: SimpleTemplateResponse.render()
  96. Sets ``response.content`` to the result obtained by
  97. :attr:`SimpleTemplateResponse.rendered_content`, runs all post-rendering
  98. callbacks, and returns the resulting response object.
  99. ``render()`` will only have an effect the first time it is called. On
  100. subsequent calls, it will return the result obtained from the first call.
  101. ``TemplateResponse`` objects
  102. ============================
  103. .. class:: TemplateResponse()
  104. ``TemplateResponse`` is a subclass of
  105. :class:`~django.template.response.SimpleTemplateResponse` that knows about
  106. the current :class:`~django.http.HttpRequest`.
  107. Methods
  108. -------
  109. .. method:: TemplateResponse.__init__(request, template, context=None, content_type=None, status=None, charset=None, using=None, headers=None)
  110. Instantiates a :class:`~django.template.response.TemplateResponse` object
  111. with the given request, template, context, content type, HTTP status, and
  112. charset.
  113. ``request``
  114. An :class:`~django.http.HttpRequest` instance.
  115. ``template``
  116. A backend-dependent template object (such as those returned by
  117. :func:`~django.template.loader.get_template()`), the name of a template,
  118. or a list of template names.
  119. ``context``
  120. A :class:`dict` of values to add to the template context. By default,
  121. this is an empty dictionary.
  122. ``content_type``
  123. The value included in the HTTP ``Content-Type`` header, including the
  124. MIME type specification and the character set encoding. If
  125. ``content_type`` is specified, then its value is used. Otherwise,
  126. ``'text/html'`` is used.
  127. ``status``
  128. The HTTP status code for the response.
  129. ``charset``
  130. The charset in which the response will be encoded. If not given it will
  131. be extracted from ``content_type``, and if that is unsuccessful, the
  132. :setting:`DEFAULT_CHARSET` setting will be used.
  133. ``using``
  134. The :setting:`NAME <TEMPLATES-NAME>` of a template engine to use for
  135. loading the template.
  136. ``headers``
  137. A :class:`dict` of HTTP headers to add to the response.
  138. .. versionchanged:: 3.2
  139. The ``headers`` parameter was added.
  140. The rendering process
  141. =====================
  142. Before a :class:`~django.template.response.TemplateResponse` instance can be
  143. returned to the client, it must be rendered. The rendering process takes the
  144. intermediate representation of template and context, and turns it into the
  145. final byte stream that can be served to the client.
  146. There are three circumstances under which a ``TemplateResponse`` will be
  147. rendered:
  148. * When the ``TemplateResponse`` instance is explicitly rendered, using
  149. the :meth:`SimpleTemplateResponse.render()` method.
  150. * When the content of the response is explicitly set by assigning
  151. ``response.content``.
  152. * After passing through template response middleware, but before
  153. passing through response middleware.
  154. A ``TemplateResponse`` can only be rendered once. The first call to
  155. :meth:`SimpleTemplateResponse.render` sets the content of the response;
  156. subsequent rendering calls do not change the response content.
  157. However, when ``response.content`` is explicitly assigned, the
  158. change is always applied. If you want to force the content to be
  159. re-rendered, you can re-evaluate the rendered content, and assign
  160. the content of the response manually::
  161. # Set up a rendered TemplateResponse
  162. >>> from django.template.response import TemplateResponse
  163. >>> t = TemplateResponse(request, 'original.html', {})
  164. >>> t.render()
  165. >>> print(t.content)
  166. Original content
  167. # Re-rendering doesn't change content
  168. >>> t.template_name = 'new.html'
  169. >>> t.render()
  170. >>> print(t.content)
  171. Original content
  172. # Assigning content does change, no render() call required
  173. >>> t.content = t.rendered_content
  174. >>> print(t.content)
  175. New content
  176. Post-render callbacks
  177. ---------------------
  178. Some operations -- such as caching -- cannot be performed on an
  179. unrendered template. They must be performed on a fully complete and
  180. rendered response.
  181. If you're using middleware, you can do that. Middleware provides
  182. multiple opportunities to process a response on exit from a view. If
  183. you put behavior in the response middleware, it's guaranteed to execute
  184. after template rendering has taken place.
  185. However, if you're using a decorator, the same opportunities do not
  186. exist. Any behavior defined in a decorator is handled immediately.
  187. To compensate for this (and any other analogous use cases),
  188. :class:`TemplateResponse` allows you to register callbacks that will
  189. be invoked when rendering has completed. Using this callback, you can
  190. defer critical processing until a point where you can guarantee that
  191. rendered content will be available.
  192. To define a post-render callback, define a function that takes
  193. a single argument -- response -- and register that function with
  194. the template response::
  195. from django.template.response import TemplateResponse
  196. def my_render_callback(response):
  197. # Do content-sensitive processing
  198. do_post_processing()
  199. def my_view(request):
  200. # Create a response
  201. response = TemplateResponse(request, 'mytemplate.html', {})
  202. # Register the callback
  203. response.add_post_render_callback(my_render_callback)
  204. # Return the response
  205. return response
  206. ``my_render_callback()`` will be invoked after the ``mytemplate.html``
  207. has been rendered, and will be provided the fully rendered
  208. :class:`TemplateResponse` instance as an argument.
  209. If the template has already been rendered, the callback will be
  210. invoked immediately.
  211. Using ``TemplateResponse`` and ``SimpleTemplateResponse``
  212. =========================================================
  213. A :class:`TemplateResponse` object can be used anywhere that a normal
  214. :class:`django.http.HttpResponse` can be used. It can also be used as an
  215. alternative to calling :func:`~django.shortcuts.render()`.
  216. For example, the following view returns a :class:`TemplateResponse` with a
  217. template and a context containing a queryset::
  218. from django.template.response import TemplateResponse
  219. def blog_index(request):
  220. return TemplateResponse(request, 'entry_list.html', {'entries': Entry.objects.all()})