1.编写一个简单的表单
首先让我们来丰富一下模板(“myapp/detail.html”),让它包含一个HTML 元素:
#---------------------------------------------------------------------------------------------------------------------------------------------
{{ question.question_text }}
{% if error_message %} {{ error_message }}
{% csrf_token %}
{% for choice in question.choice_set.all %}
{% endfor %}
#---------------------------------------------------------------------------------------------------------------------------------------------
简要说明:
from django.shortcuts import render
from django.http import HttpResponse,Http404,HttpResponseRedirect
from django.template import RequestContext, loader
from .models import Question,Choice
from django.shortcuts import render,get_object_or_404
from django.core.urlresolvers import reverse
def vote(request,question_id):
p = get_object_or_404(Question, pk=question_id)
try:
selected_choice = p.choice_set.get(pk=request.POST['choice'])
except (KeyError, Choice.DoesNotExist):
return render(request, 'myapp/detail.html', {
'question': p,
'error_message': "You didn't select a choice.",
})
else:
selected_choice.votes += 1
selected_choice.save()
return HttpResponseRedirect(reverse('myapp:results', args=(p.id,)))
#---------------------------------------------------------------------------------------------------------------------------------------------
有些新的东西我们来解释一下:
request.POST 是一个类似字典的对象,让你可以通过关键字的名字获取提交的数据。 这个例子中,request.POST['choice'] 以字符串形式返回选择的Choice的ID。request.POST 的值永远是字符串。
注意,Django还以同样的方式提供request.GET用于访问GET数据 —— 但我们在代码中显式地使用request.POST,以保证数据只能通过POST调用改动。
如果在POST数据中没有提供choice,request.POST['choice']将引发一个KeyError。上面的代码检查KeyError,如果没有给出choice将重新显示Question表单和一个错误信息。
在增加Choice的得票数之后,代码返回一个 HttpResponseRedirect而不是常用的HttpResponse。HttpResponseRedirect只接收一个参数:用户将要被重定向的URL(请继续看下去,我们将会解释如何构造这个例子中的URL)。
正如上面的Python注释指出的,你应该在成功处理POST数据后总是返回一个HttpResponseRedirect。 这不是Django的特定技巧; 这是那些优秀网站在开发实践中形成的共识。
在这个例子中,我们在HttpResponseRedirect的构造函数中使用reverse()函数。这个函数避免了我们在视图函数中硬编码URL。它需要我们给出我们想要跳转的视图的名字和该视图所对应的URL模式中需要给该视图提供的参数。 在本例中,使用在教程3中设定的URLconf, reverse() 调用将返回一个这样的字符串:
'/myapp/3/results/'
... 其中3是p.id的值。重定向的URL将调用'results'视图来显示最终的页面。
正如在教程3中提到的,request是一个 HttpRequest对象。
当有人对Question进行投票后,vote()视图将请求重定向到Question的结果界面。让我们来编写这个视图:
#---------------------------------------------------------------------------------------------------------------------------------------------
def results(request,question_id):
question = get_object_or_404(Question, pk=question_id)
return render(request, 'myapp/results.html', {'question': question})
#---------------------------------------------------------------------------------------------------------------------------------------------
加下来创建results视图的模版文件myapp/results.html:
#---------------------------------------------------------------------------------------------------------------------------------------------
{{ question.question_text }}
{% for choice in question.choice_set.all %}
{% endfor %}
#---------------------------------------------------------------------------------------------------------------------------------------------
2.使用通用视图来简化代码
目前我们编写代码的思路是Web开发中的一个常见情况:根据URL中的参数从数据库中获取数据、载入模板文件然后返回渲染后的模板。 由于这种情况非常普遍,Django提供了一种叫做“generic views”的系统可以方便地进行处理。
Generic views会将常见的模式抽象化,可以使你在编写app时甚至不需要编写Python代码。
让我们将我们的投票应用转换成使用通用视图系统,这样我们可以删除许多我们的代码。我们仅仅需要做以下几步来完成转换: 我们将:
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.IndexView.as_view(), name='index'),
url(r'^(?P
url(r'^(?P
url(r'^(?P
]
from django.shortcuts import get_object_or_404, render
from django.http import HttpResponseRedirect
from django.core.urlresolvers import reverse
from django.views import generic
from .models import Question,Choice
# Create your views here.
class IndexView(generic.ListView):
template_name = 'myapp/index.html'
context_object_name = 'latest_question_list'
def get_queryset(self):
"""Return the last five published questions."""
return Question.objects.order_by('-pub_date')[:5]
class DetailView(generic.DetailView):
model = Question
# template_name = 'myapp/detail.html'
class ResultsView(generic.DetailView):
model = Question
template_name = 'myapp/results.html'
def vote(request,question_id):
question=get_object_or_404(Question,pk=question_id)
return render(request,'myapp/vote.html',{'question':question})
我们在这里使用两个通用视图:ListView 和 DetailView。这两个视图分别抽象“显示一个对象列表”和“显示一个特定类型对象的详细信息页面”这两种概念。
默认情况下,通用视图DetailView 使用一个叫做
类似地,ListView使用一个叫做
在之前的教程中,提供模板文件时都带有一个包含question 和 latest_question_list 变量的context。对于DetailView ,question变量会自动提供—— 因为我们使用Django 的模型 (Question), Django 能够为context 变量决定一个合适的名字。然而对于ListView, 自动生成的context 变量是question_list。为了覆盖这个行为,我们提供 context_object_name 属性,表示我们想使用latest_question_list。作为一种替换方案,你可以改变你的模板来匹配新的context变量 —— 但直接告诉Django使用你想要的变量会省事很多。
启动服务器127.0.0.1:8000/myapp/1/,使用一下基于通用视图的新投票应用。