2012-06-11 16:34:00 +08:00
|
|
|
==========
|
|
|
|
Base views
|
|
|
|
==========
|
|
|
|
|
|
|
|
The following three classes provide much of the functionality needed to create
|
|
|
|
Django views. You may think of them as *parent* views, which can be used by
|
|
|
|
themselves or inherited from. They may not provide all the capabilities
|
|
|
|
required for projects, in which case there are Mixins and Generic class-based
|
|
|
|
views.
|
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
Many of Django's built-in class-based views inherit from other class-based
|
2013-05-16 21:56:30 +08:00
|
|
|
views or various mixins. Because this inheritance chain is very important, the
|
2012-09-09 01:46:08 +08:00
|
|
|
ancestor classes are documented under the section title of **Ancestors (MRO)**.
|
|
|
|
MRO is an acronym for Method Resolution Order.
|
|
|
|
|
2012-08-11 14:07:15 +08:00
|
|
|
View
|
|
|
|
----
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. class:: django.views.generic.base.View
|
|
|
|
|
|
|
|
The master class-based base view. All other class-based views inherit from
|
|
|
|
this base class.
|
|
|
|
|
|
|
|
**Method Flowchart**
|
|
|
|
|
|
|
|
1. :meth:`dispatch()`
|
|
|
|
2. :meth:`http_method_not_allowed()`
|
2012-09-09 01:46:08 +08:00
|
|
|
3. :meth:`options()`
|
2012-06-11 16:34:00 +08:00
|
|
|
|
|
|
|
**Example views.py**::
|
|
|
|
|
|
|
|
from django.http import HttpResponse
|
|
|
|
from django.views.generic import View
|
|
|
|
|
|
|
|
class MyView(View):
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
return HttpResponse('Hello, World!')
|
|
|
|
|
|
|
|
**Example urls.py**::
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
from myapp.views import MyView
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2012-06-11 16:34:00 +08:00
|
|
|
url(r'^mine/$', MyView.as_view(), name='my-view'),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
**Attributes**
|
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
.. attribute:: http_method_names
|
2012-09-09 01:46:08 +08:00
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
The list of HTTP method names that this view will accept.
|
|
|
|
|
|
|
|
Default::
|
|
|
|
|
2013-05-22 00:01:29 +08:00
|
|
|
['get', 'post', 'put', 'patch', 'delete', 'head', 'options', 'trace']
|
2012-09-09 01:46:08 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
**Methods**
|
|
|
|
|
2012-09-09 01:19:58 +08:00
|
|
|
.. classmethod:: as_view(**initkwargs)
|
|
|
|
|
|
|
|
Returns a callable view that takes a request and returns a response::
|
|
|
|
|
2012-09-09 05:34:22 +08:00
|
|
|
response = MyView.as_view()(request)
|
2012-09-09 01:19:58 +08:00
|
|
|
|
2014-12-27 15:16:53 +08:00
|
|
|
.. versionadded:: 1.9
|
|
|
|
|
|
|
|
The returned view has ``view_class`` and ``view_initkwargs``
|
|
|
|
attributes.
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. method:: dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
The ``view`` part of the view -- the method that accepts a ``request``
|
|
|
|
argument plus arguments, and returns a HTTP response.
|
|
|
|
|
|
|
|
The default implementation will inspect the HTTP method and attempt to
|
|
|
|
delegate to a method that matches the HTTP method; a ``GET`` will be
|
2013-01-01 21:12:42 +08:00
|
|
|
delegated to ``get()``, a ``POST`` to ``post()``, and so on.
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
By default, a ``HEAD`` request will be delegated to ``get()``.
|
2012-09-09 06:45:02 +08:00
|
|
|
If you need to handle ``HEAD`` requests in a different way than ``GET``,
|
2013-01-01 21:12:42 +08:00
|
|
|
you can override the ``head()`` method. See
|
2012-09-09 06:45:02 +08:00
|
|
|
:ref:`supporting-other-http-methods` for an example.
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. method:: http_method_not_allowed(request, *args, **kwargs)
|
|
|
|
|
|
|
|
If the view was called with a HTTP method it doesn't support, this
|
|
|
|
method is called instead.
|
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
The default implementation returns ``HttpResponseNotAllowed`` with a
|
|
|
|
list of allowed methods in plain text.
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
.. method:: options(request, *args, **kwargs)
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
Handles responding to requests for the OPTIONS HTTP verb. Returns a
|
|
|
|
list of the allowed HTTP method names for the view.
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2012-08-11 14:07:15 +08:00
|
|
|
TemplateView
|
|
|
|
------------
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. class:: django.views.generic.base.TemplateView
|
|
|
|
|
2013-02-01 16:55:19 +08:00
|
|
|
Renders a given template, with the context containing parameters captured
|
|
|
|
in the URL.
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
**Ancestors (MRO)**
|
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
This view inherits methods and attributes from the following views:
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
* :class:`django.views.generic.base.TemplateResponseMixin`
|
2014-01-16 20:58:08 +08:00
|
|
|
* :class:`django.views.generic.base.ContextMixin`
|
2012-06-11 16:34:00 +08:00
|
|
|
* :class:`django.views.generic.base.View`
|
|
|
|
|
|
|
|
**Method Flowchart**
|
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
1. :meth:`~django.views.generic.base.View.dispatch()`
|
|
|
|
2. :meth:`~django.views.generic.base.View.http_method_not_allowed()`
|
|
|
|
3. :meth:`~django.views.generic.base.ContextMixin.get_context_data()`
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
**Example views.py**::
|
|
|
|
|
|
|
|
from django.views.generic.base import TemplateView
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
from articles.models import Article
|
|
|
|
|
|
|
|
class HomePageView(TemplateView):
|
|
|
|
|
|
|
|
template_name = "home.html"
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(HomePageView, self).get_context_data(**kwargs)
|
|
|
|
context['latest_articles'] = Article.objects.all()[:5]
|
|
|
|
return context
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
**Example urls.py**::
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
2012-06-11 16:34:00 +08:00
|
|
|
|
|
|
|
from myapp.views import HomePageView
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2012-06-11 16:34:00 +08:00
|
|
|
url(r'^$', HomePageView.as_view(), name='home'),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|
2012-06-11 16:34:00 +08:00
|
|
|
|
|
|
|
**Context**
|
|
|
|
|
2014-01-16 20:58:08 +08:00
|
|
|
* Populated (through :class:`~django.views.generic.base.ContextMixin`) with
|
|
|
|
the keyword arguments captured from the URL pattern that served the view.
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2012-08-11 14:07:15 +08:00
|
|
|
RedirectView
|
|
|
|
------------
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. class:: django.views.generic.base.RedirectView
|
|
|
|
|
|
|
|
Redirects to a given URL.
|
|
|
|
|
|
|
|
The given URL may contain dictionary-style string formatting, which will be
|
|
|
|
interpolated against the parameters captured in the URL. Because keyword
|
|
|
|
interpolation is *always* done (even if no arguments are passed in), any
|
|
|
|
``"%"`` characters in the URL must be written as ``"%%"`` so that Python
|
|
|
|
will convert them to a single percent sign on output.
|
|
|
|
|
|
|
|
If the given URL is ``None``, Django will return an ``HttpResponseGone``
|
|
|
|
(410).
|
|
|
|
|
|
|
|
**Ancestors (MRO)**
|
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
This view inherits methods and attributes from the following view:
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
* :class:`django.views.generic.base.View`
|
|
|
|
|
|
|
|
**Method Flowchart**
|
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
1. :meth:`~django.views.generic.base.View.dispatch()`
|
|
|
|
2. :meth:`~django.views.generic.base.View.http_method_not_allowed()`
|
2012-06-11 16:34:00 +08:00
|
|
|
3. :meth:`get_redirect_url()`
|
|
|
|
|
|
|
|
**Example views.py**::
|
|
|
|
|
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from django.views.generic.base import RedirectView
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
from articles.models import Article
|
|
|
|
|
|
|
|
class ArticleCounterRedirectView(RedirectView):
|
|
|
|
|
|
|
|
permanent = False
|
|
|
|
query_string = True
|
2013-06-14 18:59:26 +08:00
|
|
|
pattern_name = 'article-detail'
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2013-06-14 18:59:26 +08:00
|
|
|
def get_redirect_url(self, *args, **kwargs):
|
2014-07-17 00:08:24 +08:00
|
|
|
article = get_object_or_404(Article, pk=kwargs['pk'])
|
2012-06-11 16:34:00 +08:00
|
|
|
article.update_counter()
|
2013-06-14 18:59:26 +08:00
|
|
|
return super(ArticleCounterRedirectView, self).get_redirect_url(*args, **kwargs)
|
2012-06-11 16:34:00 +08:00
|
|
|
|
|
|
|
**Example urls.py**::
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
2012-06-11 16:34:00 +08:00
|
|
|
from django.views.generic.base import RedirectView
|
2012-08-11 14:07:15 +08:00
|
|
|
|
2013-06-14 18:59:26 +08:00
|
|
|
from article.views import ArticleCounterRedirectView, ArticleDetail
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2014-04-15 02:12:44 +08:00
|
|
|
url(r'^counter/(?P<pk>[0-9]+)/$', ArticleCounterRedirectView.as_view(), name='article-counter'),
|
|
|
|
url(r'^details/(?P<pk>[0-9]+)/$', ArticleDetail.as_view(), name='article-detail'),
|
2012-06-11 16:34:00 +08:00
|
|
|
url(r'^go-to-django/$', RedirectView.as_view(url='http://djangoproject.com'), name='go-to-django'),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
**Attributes**
|
2012-06-11 16:34:00 +08:00
|
|
|
|
|
|
|
.. attribute:: url
|
|
|
|
|
|
|
|
The URL to redirect to, as a string. Or ``None`` to raise a 410 (Gone)
|
|
|
|
HTTP error.
|
|
|
|
|
2013-06-14 18:59:26 +08:00
|
|
|
.. attribute:: pattern_name
|
|
|
|
|
|
|
|
The name of the URL pattern to redirect to. Reversing will be done
|
|
|
|
using the same args and kwargs as are passed in for this view.
|
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. attribute:: permanent
|
|
|
|
|
|
|
|
Whether the redirect should be permanent. The only difference here is
|
|
|
|
the HTTP status code returned. If ``True``, then the redirect will use
|
|
|
|
status code 301. If ``False``, then the redirect will use status code
|
2015-01-19 05:43:57 +08:00
|
|
|
302. By default, ``permanent`` is ``False``.
|
2012-06-11 16:34:00 +08:00
|
|
|
|
2015-01-19 05:43:57 +08:00
|
|
|
.. versionchanged:: 1.9
|
2014-11-22 00:55:58 +08:00
|
|
|
|
2015-01-19 05:43:57 +08:00
|
|
|
The default value of the ``permanent`` attribute changed from
|
|
|
|
``True`` to ``False``.
|
2014-11-22 00:55:58 +08:00
|
|
|
|
2012-06-11 16:34:00 +08:00
|
|
|
.. attribute:: query_string
|
|
|
|
|
|
|
|
Whether to pass along the GET query string to the new location. If
|
|
|
|
``True``, then the query string is appended to the URL. If ``False``,
|
|
|
|
then the query string is discarded. By default, ``query_string`` is
|
|
|
|
``False``.
|
|
|
|
|
2012-09-09 01:46:08 +08:00
|
|
|
**Methods**
|
|
|
|
|
2013-11-07 19:30:04 +08:00
|
|
|
.. method:: get_redirect_url(*args, **kwargs)
|
2012-06-11 16:34:00 +08:00
|
|
|
|
|
|
|
Constructs the target URL for redirection.
|
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
The default implementation uses :attr:`url` as a starting
|
2013-11-07 19:30:04 +08:00
|
|
|
string and performs expansion of ``%`` named parameters in that string
|
|
|
|
using the named groups captured in the URL.
|
|
|
|
|
|
|
|
If :attr:`url` is not set, ``get_redirect_url()`` tries to reverse the
|
|
|
|
:attr:`pattern_name` using what was captured in the URL (both named and
|
|
|
|
unnamed groups are used).
|
|
|
|
|
|
|
|
If requested by :attr:`query_string`, it will also append the query
|
|
|
|
string to the generated URL.
|
2013-01-01 21:12:42 +08:00
|
|
|
Subclasses may implement any behavior they wish, as long as the method
|
|
|
|
returns a redirect-ready URL string.
|