template-response.txt 11 KB

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