shortcuts.txt 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. =========================
  2. Django shortcut functions
  3. =========================
  4. .. module:: django.shortcuts
  5. :synopsis:
  6. Convenience shortcuts that span multiple levels of Django's MVC stack.
  7. .. index:: shortcuts
  8. The package ``django.shortcuts`` collects helper functions and classes that
  9. "span" multiple levels of MVC. In other words, these functions/classes
  10. introduce controlled coupling for convenience's sake.
  11. ``render``
  12. ==========
  13. .. function:: render(request, template_name[, dictionary][, context_instance][, content_type][, status][, current_app])
  14. Combines a given template with a given context dictionary and returns an
  15. :class:`~django.http.HttpResponse` object with that rendered text.
  16. :func:`render()` is the same as a call to
  17. :func:`render_to_response()` with a ``context_instance`` argument that
  18. forces the use of a :class:`~django.template.RequestContext`.
  19. Required arguments
  20. ------------------
  21. ``request``
  22. The request object used to generate this response.
  23. ``template_name``
  24. The full name of a template to use or sequence of template names.
  25. Optional arguments
  26. ------------------
  27. ``dictionary``
  28. A dictionary of values to add to the template context. By default, this
  29. is an empty dictionary. If a value in the dictionary is callable, the
  30. view will call it just before rendering the template.
  31. ``context_instance``
  32. The context instance to render the template with. By default, the template
  33. will be rendered with a ``RequestContext`` instance (filled with values from
  34. ``request`` and ``dictionary``).
  35. ``content_type``
  36. The MIME type to use for the resulting document. Defaults to the value of
  37. the :setting:`DEFAULT_CONTENT_TYPE` setting.
  38. ``status``
  39. The status code for the response. Defaults to ``200``.
  40. ``current_app``
  41. A hint indicating which application contains the current view. See the
  42. :ref:`namespaced URL resolution strategy <topics-http-reversing-url-namespaces>`
  43. for more information.
  44. Example
  45. -------
  46. The following example renders the template ``myapp/index.html`` with the
  47. MIME type :mimetype:`application/xhtml+xml`::
  48. from django.shortcuts import render
  49. def my_view(request):
  50. # View code here...
  51. return render(request, 'myapp/index.html', {"foo": "bar"},
  52. content_type="application/xhtml+xml")
  53. This example is equivalent to::
  54. from django.http import HttpResponse
  55. from django.template import RequestContext, loader
  56. def my_view(request):
  57. # View code here...
  58. t = loader.get_template('myapp/template.html')
  59. c = RequestContext(request, {'foo': 'bar'})
  60. return HttpResponse(t.render(c),
  61. content_type="application/xhtml+xml")
  62. ``render_to_response``
  63. ======================
  64. .. function:: render_to_response(template_name[, dictionary][, context_instance][, content_type])
  65. Renders a given template with a given context dictionary and returns an
  66. :class:`~django.http.HttpResponse` object with that rendered text.
  67. Required arguments
  68. ------------------
  69. ``template_name``
  70. The full name of a template to use or sequence of template names. If a
  71. sequence is given, the first template that exists will be used. See the
  72. :ref:`template loader documentation <ref-templates-api-the-python-api>`
  73. for more information on how templates are found.
  74. Optional arguments
  75. ------------------
  76. ``dictionary``
  77. A dictionary of values to add to the template context. By default, this
  78. is an empty dictionary. If a value in the dictionary is callable, the
  79. view will call it just before rendering the template.
  80. ``context_instance``
  81. The context instance to render the template with. By default, the template
  82. will be rendered with a :class:`~django.template.Context` instance (filled
  83. with values from ``dictionary``). If you need to use :ref:`context
  84. processors <subclassing-context-requestcontext>`, render the template with
  85. a :class:`~django.template.RequestContext` instance instead. Your code
  86. might look something like this::
  87. return render_to_response('my_template.html',
  88. my_data_dictionary,
  89. context_instance=RequestContext(request))
  90. ``content_type``
  91. The MIME type to use for the resulting document. Defaults to the value of
  92. the :setting:`DEFAULT_CONTENT_TYPE` setting.
  93. Example
  94. -------
  95. The following example renders the template ``myapp/index.html`` with the
  96. MIME type :mimetype:`application/xhtml+xml`::
  97. from django.shortcuts import render_to_response
  98. def my_view(request):
  99. # View code here...
  100. return render_to_response('myapp/index.html', {"foo": "bar"},
  101. mimetype="application/xhtml+xml")
  102. This example is equivalent to::
  103. from django.http import HttpResponse
  104. from django.template import Context, loader
  105. def my_view(request):
  106. # View code here...
  107. t = loader.get_template('myapp/template.html')
  108. c = Context({'foo': 'bar'})
  109. return HttpResponse(t.render(c),
  110. content_type="application/xhtml+xml")
  111. ``redirect``
  112. ============
  113. .. function:: redirect(to[, permanent=False], *args, **kwargs)
  114. Returns an :class:`~django.http.HttpResponseRedirect` to the appropriate URL
  115. for the arguments passed.
  116. The arguments could be:
  117. * A model: the model's `:meth:`~django.db.models.Model.get_absolute_url()`
  118. function will be called.
  119. * A view name, possibly with arguments: :func:`urlresolvers.reverse
  120. <django.core.urlresolvers.reverse>` will be used to reverse-resolve the
  121. name.
  122. * A URL, which will be used as-is for the redirect location.
  123. By default issues a temporary redirect; pass ``permanent=True`` to issue a
  124. permanent redirect
  125. Examples
  126. --------
  127. You can use the :func:`redirect` function in a number of ways.
  128. 1. By passing some object; that object's
  129. :meth:`~django.db.models.Model.get_absolute_url` method will be called
  130. to figure out the redirect URL::
  131. from django.shortcuts import redirect
  132. def my_view(request):
  133. ...
  134. object = MyModel.objects.get(...)
  135. return redirect(object)
  136. 2. By passing the name of a view and optionally some positional or
  137. keyword arguments; the URL will be reverse resolved using the
  138. :func:`~django.core.urlresolvers.reverse` method::
  139. def my_view(request):
  140. ...
  141. return redirect('some-view-name', foo='bar')
  142. 3. By passing a hardcoded URL to redirect to::
  143. def my_view(request):
  144. ...
  145. return redirect('/some/url/')
  146. This also works with full URLs::
  147. def my_view(request):
  148. ...
  149. return redirect('http://example.com/')
  150. By default, :func:`redirect` returns a temporary redirect. All of the above
  151. forms accept a ``permanent`` argument; if set to ``True`` a permanent redirect
  152. will be returned::
  153. def my_view(request):
  154. ...
  155. object = MyModel.objects.get(...)
  156. return redirect(object, permanent=True)
  157. ``get_object_or_404``
  158. =====================
  159. .. function:: get_object_or_404(klass, *args, **kwargs)
  160. Calls :meth:`~django.db.models.query.QuerySet.get()` on a given model manager,
  161. but it raises :class:`~django.http.Http404` instead of the model's
  162. :class:`~django.core.exceptions.DoesNotExist` exception.
  163. Required arguments
  164. ------------------
  165. ``klass``
  166. A :class:`~django.db.models.Model`, :class:`~django.db.models.Manager` or
  167. :class:`~django.db.models.query.QuerySet` instance from which to get the
  168. object.
  169. ``**kwargs``
  170. Lookup parameters, which should be in the format accepted by ``get()`` and
  171. ``filter()``.
  172. Example
  173. -------
  174. The following example gets the object with the primary key of 1 from
  175. ``MyModel``::
  176. from django.shortcuts import get_object_or_404
  177. def my_view(request):
  178. my_object = get_object_or_404(MyModel, pk=1)
  179. This example is equivalent to::
  180. from django.http import Http404
  181. def my_view(request):
  182. try:
  183. my_object = MyModel.objects.get(pk=1)
  184. except MyModel.DoesNotExist:
  185. raise Http404
  186. Note: As with ``get()``, a
  187. :class:`~django.core.exceptions.MultipleObjectsReturned` exception
  188. will be raised if more than one object is found.
  189. ``get_list_or_404``
  190. ===================
  191. .. function:: get_list_or_404(klass, *args, **kwargs)
  192. Returns the result of :meth:`~django.db.models.query.QuerySet.filter()` on a
  193. given model manager cast to a list, raising :class:`~django.http.Http404` if
  194. the resulting list is empty.
  195. Required arguments
  196. ------------------
  197. ``klass``
  198. A :class:`~django.db.models.Model`, :class:`~django.db.models.Manager` or
  199. :class:`~django.db.models.query.QuerySet` instance from which to get the
  200. list.
  201. ``**kwargs``
  202. Lookup parameters, which should be in the format accepted by ``get()`` and
  203. ``filter()``.
  204. Example
  205. -------
  206. The following example gets all published objects from ``MyModel``::
  207. from django.shortcuts import get_list_or_404
  208. def my_view(request):
  209. my_objects = get_list_or_404(MyModel, published=True)
  210. This example is equivalent to::
  211. from django.http import Http404
  212. def my_view(request):
  213. my_objects = list(MyModel.objects.filter(published=True))
  214. if not my_objects:
  215. raise Http404