base.txt 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. ==========
  2. Base views
  3. ==========
  4. The following three classes provide much of the functionality needed to create
  5. Django views. You may think of them as *parent* views, which can be used by
  6. themselves or inherited from. They may not provide all the capabilities
  7. required for projects, in which case there are Mixins and Generic class-based
  8. views.
  9. Many of Django's built-in class-based views inherit from other class-based
  10. views or various mixins. Because this inheritance chain is very important, the
  11. ancestor classes are documented under the section title of **Ancestors (MRO)**.
  12. MRO is an acronym for Method Resolution Order.
  13. View
  14. ----
  15. .. class:: django.views.generic.base.View
  16. The master class-based base view. All other class-based views inherit from
  17. this base class.
  18. **Method Flowchart**
  19. 1. :meth:`dispatch()`
  20. 2. :meth:`http_method_not_allowed()`
  21. 3. :meth:`options()`
  22. **Example views.py**::
  23. from django.http import HttpResponse
  24. from django.views.generic import View
  25. class MyView(View):
  26. def get(self, request, *args, **kwargs):
  27. return HttpResponse('Hello, World!')
  28. **Example urls.py**::
  29. from django.conf.urls import patterns, url
  30. from myapp.views import MyView
  31. urlpatterns = patterns('',
  32. url(r'^mine/$', MyView.as_view(), name='my-view'),
  33. )
  34. **Attributes**
  35. .. attribute:: http_method_names
  36. The list of HTTP method names that this view will accept.
  37. Default::
  38. ['get', 'post', 'put', 'delete', 'head', 'options', 'trace']
  39. **Methods**
  40. .. classmethod:: as_view(**initkwargs)
  41. Returns a callable view that takes a request and returns a response::
  42. response = MyView.as_view()(request)
  43. .. method:: dispatch(request, *args, **kwargs)
  44. The ``view`` part of the view -- the method that accepts a ``request``
  45. argument plus arguments, and returns a HTTP response.
  46. The default implementation will inspect the HTTP method and attempt to
  47. delegate to a method that matches the HTTP method; a ``GET`` will be
  48. delegated to ``get()``, a ``POST`` to ``post()``, and so on.
  49. By default, a ``HEAD`` request will be delegated to ``get()``.
  50. If you need to handle ``HEAD`` requests in a different way than ``GET``,
  51. you can override the ``head()`` method. See
  52. :ref:`supporting-other-http-methods` for an example.
  53. The default implementation also sets ``request``, ``args`` and
  54. ``kwargs`` as instance variables, so any method on the view can know
  55. the full details of the request that was made to invoke the view.
  56. .. method:: http_method_not_allowed(request, *args, **kwargs)
  57. If the view was called with a HTTP method it doesn't support, this
  58. method is called instead.
  59. The default implementation returns ``HttpResponseNotAllowed`` with a
  60. list of allowed methods in plain text.
  61. .. method:: options(request, *args, **kwargs)
  62. Handles responding to requests for the OPTIONS HTTP verb. Returns a
  63. list of the allowed HTTP method names for the view.
  64. TemplateView
  65. ------------
  66. .. class:: django.views.generic.base.TemplateView
  67. Renders a given template, with the context containing parameters captured
  68. in the URL.
  69. .. versionchanged:: 1.5
  70. The context used to be populated with a ``{{ params }}`` dictionary of
  71. the parameters captured in the URL. Now those parameters are first-level
  72. context variables.
  73. **Ancestors (MRO)**
  74. This view inherits methods and attributes from the following views:
  75. * :class:`django.views.generic.base.TemplateView`
  76. * :class:`django.views.generic.base.TemplateResponseMixin`
  77. * :class:`django.views.generic.base.View`
  78. **Method Flowchart**
  79. 1. :meth:`~django.views.generic.base.View.dispatch()`
  80. 2. :meth:`~django.views.generic.base.View.http_method_not_allowed()`
  81. 3. :meth:`~django.views.generic.base.ContextMixin.get_context_data()`
  82. **Example views.py**::
  83. from django.views.generic.base import TemplateView
  84. from articles.models import Article
  85. class HomePageView(TemplateView):
  86. template_name = "home.html"
  87. def get_context_data(self, **kwargs):
  88. context = super(HomePageView, self).get_context_data(**kwargs)
  89. context['latest_articles'] = Article.objects.all()[:5]
  90. return context
  91. **Example urls.py**::
  92. from django.conf.urls import patterns, url
  93. from myapp.views import HomePageView
  94. urlpatterns = patterns('',
  95. url(r'^$', HomePageView.as_view(), name='home'),
  96. )
  97. **Context**
  98. * ``params``: The dictionary of keyword arguments captured from the URL
  99. pattern that served the view.
  100. RedirectView
  101. ------------
  102. .. class:: django.views.generic.base.RedirectView
  103. Redirects to a given URL.
  104. The given URL may contain dictionary-style string formatting, which will be
  105. interpolated against the parameters captured in the URL. Because keyword
  106. interpolation is *always* done (even if no arguments are passed in), any
  107. ``"%"`` characters in the URL must be written as ``"%%"`` so that Python
  108. will convert them to a single percent sign on output.
  109. If the given URL is ``None``, Django will return an ``HttpResponseGone``
  110. (410).
  111. **Ancestors (MRO)**
  112. This view inherits methods and attributes from the following view:
  113. * :class:`django.views.generic.base.View`
  114. **Method Flowchart**
  115. 1. :meth:`~django.views.generic.base.View.dispatch()`
  116. 2. :meth:`~django.views.generic.base.View.http_method_not_allowed()`
  117. 3. :meth:`get_redirect_url()`
  118. **Example views.py**::
  119. from django.shortcuts import get_object_or_404
  120. from django.views.generic.base import RedirectView
  121. from articles.models import Article
  122. class ArticleCounterRedirectView(RedirectView):
  123. permanent = False
  124. query_string = True
  125. def get_redirect_url(self, pk):
  126. article = get_object_or_404(Article, pk=pk)
  127. article.update_counter()
  128. return reverse('product_detail', args=(pk,))
  129. **Example urls.py**::
  130. from django.conf.urls import patterns, url
  131. from django.views.generic.base import RedirectView
  132. from article.views import ArticleCounterRedirectView
  133. urlpatterns = patterns('',
  134. url(r'r^(?P<pk>\d+)/$', ArticleCounterRedirectView.as_view(), name='article-counter'),
  135. url(r'^go-to-django/$', RedirectView.as_view(url='http://djangoproject.com'), name='go-to-django'),
  136. )
  137. **Attributes**
  138. .. attribute:: url
  139. The URL to redirect to, as a string. Or ``None`` to raise a 410 (Gone)
  140. HTTP error.
  141. .. attribute:: permanent
  142. Whether the redirect should be permanent. The only difference here is
  143. the HTTP status code returned. If ``True``, then the redirect will use
  144. status code 301. If ``False``, then the redirect will use status code
  145. 302. By default, ``permanent`` is ``True``.
  146. .. attribute:: query_string
  147. Whether to pass along the GET query string to the new location. If
  148. ``True``, then the query string is appended to the URL. If ``False``,
  149. then the query string is discarded. By default, ``query_string`` is
  150. ``False``.
  151. **Methods**
  152. .. method:: get_redirect_url(**kwargs)
  153. Constructs the target URL for redirection.
  154. The default implementation uses :attr:`url` as a starting
  155. string, performs expansion of ``%`` parameters in that string, as well
  156. as the appending of query string if requested by :attr:`query_string`.
  157. Subclasses may implement any behavior they wish, as long as the method
  158. returns a redirect-ready URL string.