shortcuts.txt 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. =========================
  2. Django shortcut functions
  3. =========================
  4. .. module:: django.shortcuts
  5. :synopsis:
  6. Convenience shortcuts that spam 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][, mimetype])
  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. ``mimetype``
  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. mimetype="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 `get_absolute_url()` function will be called.
  118. * A view name, possibly with arguments: `urlresolvers.reverse()` will
  119. be used to reverse-resolve the name.
  120. * A URL, which will be used as-is for the redirect location.
  121. By default issues a temporary redirect; pass ``permanent=True`` to issue a
  122. permanent redirect
  123. Examples
  124. --------
  125. You can use the :func:`redirect` function in a number of ways.
  126. 1. By passing some object; that object's
  127. :meth:`~django.db.models.Model.get_absolute_url` method will be called
  128. to figure out the redirect URL::
  129. from django.shortcuts import redirect
  130. def my_view(request):
  131. ...
  132. object = MyModel.objects.get(...)
  133. return redirect(object)
  134. 2. By passing the name of a view and optionally some positional or
  135. keyword arguments; the URL will be reverse resolved using the
  136. :func:`~django.core.urlresolvers.reverse` method::
  137. def my_view(request):
  138. ...
  139. return redirect('some-view-name', foo='bar')
  140. 3. By passing a hardcoded URL to redirect to::
  141. def my_view(request):
  142. ...
  143. return redirect('/some/url/')
  144. This also works with full URLs::
  145. def my_view(request):
  146. ...
  147. return redirect('http://example.com/')
  148. By default, :func:`redirect` returns a temporary redirect. All of the above
  149. forms accept a ``permanent`` argument; if set to ``True`` a permanent redirect
  150. will be returned::
  151. def my_view(request):
  152. ...
  153. object = MyModel.objects.get(...)
  154. return redirect(object, permanent=True)
  155. ``get_object_or_404``
  156. =====================
  157. .. function:: get_object_or_404(klass, *args, **kwargs)
  158. Calls :meth:`~django.db.models.query.QuerySet.get()` on a given model manager,
  159. but it raises :class:`~django.http.Http404` instead of the model's
  160. :class:`~django.core.exceptions.DoesNotExist` exception.
  161. Required arguments
  162. ------------------
  163. ``klass``
  164. A :class:`~django.db.models.Model`, :class:`~django.db.models.Manager` or
  165. :class:`~django.db.models.query.QuerySet` instance from which to get the
  166. object.
  167. ``**kwargs``
  168. Lookup parameters, which should be in the format accepted by ``get()`` and
  169. ``filter()``.
  170. Example
  171. -------
  172. The following example gets the object with the primary key of 1 from
  173. ``MyModel``::
  174. from django.shortcuts import get_object_or_404
  175. def my_view(request):
  176. my_object = get_object_or_404(MyModel, pk=1)
  177. This example is equivalent to::
  178. from django.http import Http404
  179. def my_view(request):
  180. try:
  181. my_object = MyModel.objects.get(pk=1)
  182. except MyModel.DoesNotExist:
  183. raise Http404
  184. Note: As with ``get()``, a
  185. :class:`~django.core.exceptions.MultipleObjectsReturned` exception
  186. will be raised if more than one object is found.
  187. ``get_list_or_404``
  188. ===================
  189. .. function:: get_list_or_404(klass, *args, **kwargs)
  190. Returns the result of :meth:`~django.db.models.query.QuerySet.filter()` on a
  191. given model manager, raising :class:`~django.http.Http404` if the resulting
  192. list is empty.
  193. Required arguments
  194. ------------------
  195. ``klass``
  196. A :class:`~django.db.models.Model`, :class:`~django.db.models.Manager` or
  197. :class:`~django.db.models.query.QuerySet` instance from which to get the
  198. list.
  199. ``**kwargs``
  200. Lookup parameters, which should be in the format accepted by ``get()`` and
  201. ``filter()``.
  202. Example
  203. -------
  204. The following example gets all published objects from ``MyModel``::
  205. from django.shortcuts import get_list_or_404
  206. def my_view(request):
  207. my_objects = get_list_or_404(MyModel, published=True)
  208. This example is equivalent to::
  209. from django.http import Http404
  210. def my_view(request):
  211. my_objects = list(MyModel.objects.filter(published=True))
  212. if not my_objects:
  213. raise Http404