|
@@ -69,7 +69,7 @@ interface to working with templates in class-based views.
|
|
|
add more members to the dictionary.
|
|
|
|
|
|
Building up Django's generic class-based views
|
|
|
-===============================================
|
|
|
+==============================================
|
|
|
|
|
|
Let's look at how two of Django's generic class-based views are built
|
|
|
out of mixins providing discrete functionality. We'll consider
|
|
@@ -222,8 +222,7 @@ we'll want the functionality provided by
|
|
|
:class:`~django.views.generic.detail.SingleObjectMixin`.
|
|
|
|
|
|
We'll demonstrate this with the publisher modelling we used in the
|
|
|
-:doc:`generic class-based views
|
|
|
-introduction<generic-display>`.
|
|
|
+:doc:`generic class-based views introduction<generic-display>`.
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
@@ -233,11 +232,11 @@ introduction<generic-display>`.
|
|
|
from django.views.generic import View
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
|
|
from books.models import Author
|
|
|
-
|
|
|
+
|
|
|
class RecordInterest(View, SingleObjectMixin):
|
|
|
"""Records the current user's interest in an author."""
|
|
|
model = Author
|
|
|
-
|
|
|
+
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
if not request.user.is_authenticated():
|
|
|
return HttpResponseForbidden()
|
|
@@ -256,9 +255,7 @@ we're interested in, which it just does with a simple call to
|
|
|
``self.get_object()``. Everything else is taken care of for us by the
|
|
|
mixin.
|
|
|
|
|
|
-We can hook this into our URLs easily enough:
|
|
|
-
|
|
|
-.. code-block:: python
|
|
|
+We can hook this into our URLs easily enough::
|
|
|
|
|
|
# urls.py
|
|
|
from books.views import RecordInterest
|
|
@@ -294,8 +291,6 @@ object. In order to do this, we need to have two different querysets:
|
|
|
We'll figure that out ourselves in :meth:`get_queryset()` so we
|
|
|
can take into account the Publisher we're looking at.
|
|
|
|
|
|
-.. highlightlang:: python
|
|
|
-
|
|
|
.. note::
|
|
|
|
|
|
We have to think carefully about :meth:`get_context_data()`.
|
|
@@ -311,15 +306,15 @@ Now we can write a new :class:`PublisherDetail`::
|
|
|
from django.views.generic import ListView
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
|
|
from books.models import Publisher
|
|
|
-
|
|
|
+
|
|
|
class PublisherDetail(SingleObjectMixin, ListView):
|
|
|
paginate_by = 2
|
|
|
template_name = "books/publisher_detail.html"
|
|
|
-
|
|
|
+
|
|
|
def get_context_data(self, **kwargs):
|
|
|
kwargs['publisher'] = self.object
|
|
|
return super(PublisherDetail, self).get_context_data(**kwargs)
|
|
|
-
|
|
|
+
|
|
|
def get_queryset(self):
|
|
|
self.object = self.get_object(Publisher.objects.all())
|
|
|
return self.object.book_set.all()
|
|
@@ -339,26 +334,26 @@ have to create lots of books to see the pagination working! Here's the
|
|
|
template you'd want to use::
|
|
|
|
|
|
{% extends "base.html" %}
|
|
|
-
|
|
|
+
|
|
|
{% block content %}
|
|
|
<h2>Publisher {{ publisher.name }}</h2>
|
|
|
-
|
|
|
+
|
|
|
<ol>
|
|
|
{% for book in page_obj %}
|
|
|
<li>{{ book.title }}</li>
|
|
|
{% endfor %}
|
|
|
</ol>
|
|
|
-
|
|
|
+
|
|
|
<div class="pagination">
|
|
|
<span class="step-links">
|
|
|
{% if page_obj.has_previous %}
|
|
|
<a href="?page={{ page_obj.previous_page_number }}">previous</a>
|
|
|
{% endif %}
|
|
|
-
|
|
|
+
|
|
|
<span class="current">
|
|
|
Page {{ page_obj.number }} of {{ paginator.num_pages }}.
|
|
|
</span>
|
|
|
-
|
|
|
+
|
|
|
{% if page_obj.has_next %}
|
|
|
<a href="?page={{ page_obj.next_page_number }}">next</a>
|
|
|
{% endif %}
|
|
@@ -428,9 +423,9 @@ code so that on ``POST`` the form gets called appropriately.
|
|
|
the views implement :meth:`get()`, and things would get much more
|
|
|
confusing.
|
|
|
|
|
|
-Our new :class:`AuthorDetail` looks like this:
|
|
|
+.. highlightlang:: python
|
|
|
|
|
|
-.. code-block:: python
|
|
|
+Our new :class:`AuthorDetail` looks like this::
|
|
|
|
|
|
# CAUTION: you almost certainly do not want to do this.
|
|
|
# It is provided as part of a discussion of problems you can
|
|
@@ -455,7 +450,7 @@ Our new :class:`AuthorDetail` looks like this:
|
|
|
'author-detail',
|
|
|
kwargs = {'pk': self.object.pk},
|
|
|
)
|
|
|
-
|
|
|
+
|
|
|
def get_context_data(self, **kwargs):
|
|
|
form_class = self.get_form_class()
|
|
|
form = self.get_form(form_class)
|
|
@@ -464,7 +459,7 @@ Our new :class:`AuthorDetail` looks like this:
|
|
|
}
|
|
|
context.update(kwargs)
|
|
|
return super(AuthorDetail, self).get_context_data(**context)
|
|
|
-
|
|
|
+
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
form_class = self.get_form_class()
|
|
|
form = self.get_form(form_class)
|
|
@@ -472,14 +467,14 @@ Our new :class:`AuthorDetail` looks like this:
|
|
|
return self.form_valid(form)
|
|
|
else:
|
|
|
return self.form_invalid(form)
|
|
|
-
|
|
|
+
|
|
|
def form_valid(self, form):
|
|
|
if not self.request.user.is_authenticated():
|
|
|
return HttpResponseForbidden()
|
|
|
self.object = self.get_object()
|
|
|
# record the interest using the message in form.cleaned_data
|
|
|
return super(AuthorDetail, self).form_valid(form)
|
|
|
-
|
|
|
+
|
|
|
:meth:`get_success_url()` is just providing somewhere to redirect to,
|
|
|
which gets used in the default implementation of
|
|
|
:meth:`form_valid()`. We have to provide our own :meth:`post()` as
|
|
@@ -525,21 +520,21 @@ write our own :meth:`get_context_data()` to make the
|
|
|
from django.views.generic import DetailView
|
|
|
from django import forms
|
|
|
from books.models import Author
|
|
|
-
|
|
|
+
|
|
|
class AuthorInterestForm(forms.Form):
|
|
|
message = forms.CharField()
|
|
|
-
|
|
|
+
|
|
|
class AuthorDisplay(DetailView):
|
|
|
-
|
|
|
+
|
|
|
queryset = Author.objects.all()
|
|
|
-
|
|
|
+
|
|
|
def get_context_data(self, **kwargs):
|
|
|
context = {
|
|
|
'form': AuthorInterestForm(),
|
|
|
}
|
|
|
context.update(kwargs)
|
|
|
return super(AuthorDisplay, self).get_context_data(**context)
|
|
|
-
|
|
|
+
|
|
|
Then the :class:`AuthorInterest` is a simple :class:`FormView`, but we
|
|
|
have to bring in :class:`SingleObjectMixin` so we can find the author
|
|
|
we're talking about, and we have to remember to set
|
|
@@ -550,7 +545,7 @@ template as :class:`AuthorDisplay` is using on ``GET``.
|
|
|
|
|
|
from django.views.generic import FormView
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
|
|
-
|
|
|
+
|
|
|
class AuthorInterest(FormView, SingleObjectMixin):
|
|
|
template_name = 'books/author_detail.html'
|
|
|
form_class = AuthorInterestForm
|
|
@@ -561,13 +556,13 @@ template as :class:`AuthorDisplay` is using on ``GET``.
|
|
|
'object': self.get_object(),
|
|
|
}
|
|
|
return super(AuthorInterest, self).get_context_data(**context)
|
|
|
-
|
|
|
+
|
|
|
def get_success_url(self):
|
|
|
return reverse(
|
|
|
'author-detail',
|
|
|
kwargs = {'pk': self.object.pk},
|
|
|
)
|
|
|
-
|
|
|
+
|
|
|
def form_valid(self, form):
|
|
|
if not self.request.user.is_authenticated():
|
|
|
return HttpResponseForbidden()
|
|
@@ -588,13 +583,13 @@ using a different template.
|
|
|
.. code-block:: python
|
|
|
|
|
|
from django.views.generic import View
|
|
|
-
|
|
|
+
|
|
|
class AuthorDetail(View):
|
|
|
-
|
|
|
+
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
view = AuthorDisplay.as_view()
|
|
|
return view(request, *args, **kwargs)
|
|
|
-
|
|
|
+
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
view = AuthorInterest.as_view()
|
|
|
return view(request, *args, **kwargs)
|
|
@@ -603,3 +598,88 @@ This approach can also be used with any other generic class-based
|
|
|
views or your own class-based views inheriting directly from
|
|
|
:class:`View` or :class:`TemplateView`, as it keeps the different
|
|
|
views as separate as possible.
|
|
|
+
|
|
|
+.. _jsonresponsemixin-example:
|
|
|
+
|
|
|
+More than just HTML
|
|
|
+===================
|
|
|
+
|
|
|
+Where class based views shine is when you want to do the same thing many times.
|
|
|
+Suppose you're writing an API, and every view should return JSON instead of
|
|
|
+rendered HTML.
|
|
|
+
|
|
|
+We can create a mixin class to use in all of our views, handling the
|
|
|
+conversion to JSON once.
|
|
|
+
|
|
|
+For example, a simple JSON mixin might look something like this::
|
|
|
+
|
|
|
+ import json
|
|
|
+ from django.http import HttpResponse
|
|
|
+
|
|
|
+ class JSONResponseMixin(object):
|
|
|
+ """
|
|
|
+ A mixin that can be used to render a JSON response.
|
|
|
+ """
|
|
|
+ response_class = HttpResponse
|
|
|
+
|
|
|
+ def render_to_response(self, context, **response_kwargs):
|
|
|
+ """
|
|
|
+ Returns a JSON response, transforming 'context' to make the payload.
|
|
|
+ """
|
|
|
+ response_kwargs['content_type'] = 'application/json'
|
|
|
+ return self.response_class(
|
|
|
+ self.convert_context_to_json(context),
|
|
|
+ **response_kwargs
|
|
|
+ )
|
|
|
+
|
|
|
+ def convert_context_to_json(self, context):
|
|
|
+ "Convert the context dictionary into a JSON object"
|
|
|
+ # Note: This is *EXTREMELY* naive; in reality, you'll need
|
|
|
+ # to do much more complex handling to ensure that arbitrary
|
|
|
+ # objects -- such as Django model instances or querysets
|
|
|
+ # -- can be serialized as JSON.
|
|
|
+ return json.dumps(context)
|
|
|
+
|
|
|
+Now we mix this into the base TemplateView::
|
|
|
+
|
|
|
+ from django.views.generic import TemplateView
|
|
|
+
|
|
|
+ class JSONView(JSONResponseMixin, TemplateView):
|
|
|
+ pass
|
|
|
+
|
|
|
+Equally we could use our mixin with one of the generic views. We can make our
|
|
|
+own version of :class:`~django.views.generic.detail.DetailView` by mixing
|
|
|
+:class:`JSONResponseMixin` with the
|
|
|
+:class:`~django.views.generic.detail.BaseDetailView` -- (the
|
|
|
+:class:`~django.views.generic.detail.DetailView` before template
|
|
|
+rendering behavior has been mixed in)::
|
|
|
+
|
|
|
+ class JSONDetailView(JSONResponseMixin, BaseDetailView):
|
|
|
+ pass
|
|
|
+
|
|
|
+This view can then be deployed in the same way as any other
|
|
|
+:class:`~django.views.generic.detail.DetailView`, with exactly the
|
|
|
+same behavior -- except for the format of the response.
|
|
|
+
|
|
|
+If you want to be really adventurous, you could even mix a
|
|
|
+:class:`~django.views.generic.detail.DetailView` subclass that is able
|
|
|
+to return *both* HTML and JSON content, depending on some property of
|
|
|
+the HTTP request, such as a query argument or a HTTP header. Just mix
|
|
|
+in both the :class:`JSONResponseMixin` and a
|
|
|
+:class:`~django.views.generic.detail.SingleObjectTemplateResponseMixin`,
|
|
|
+and override the implementation of :func:`render_to_response()` to defer
|
|
|
+to the appropriate subclass depending on the type of response that the user
|
|
|
+requested::
|
|
|
+
|
|
|
+ class HybridDetailView(JSONResponseMixin, SingleObjectTemplateResponseMixin, BaseDetailView):
|
|
|
+ def render_to_response(self, context):
|
|
|
+ # Look for a 'format=json' GET argument
|
|
|
+ if self.request.GET.get('format','html') == 'json':
|
|
|
+ return JSONResponseMixin.render_to_response(self, context)
|
|
|
+ else:
|
|
|
+ return SingleObjectTemplateResponseMixin.render_to_response(self, context)
|
|
|
+
|
|
|
+Because of the way that Python resolves method overloading, the local
|
|
|
+``render_to_response()`` implementation will override the versions provided by
|
|
|
+:class:`JSONResponseMixin` and
|
|
|
+:class:`~django.views.generic.detail.SingleObjectTemplateResponseMixin`.
|