参考官网的投票系统,按照综合案例的流程创建应用polls,主要模块代码如下:
test1/polls/models.py
import datetime
from django.db import models
from django.utils import timezone
class Questions(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Meta:
ordering = \['-id'\] # 搜索的数据默认按id倒序排序
def \_\_str\_\_(self):
return self.question\_text
def was\_published\_recently(self):
now = timezone.now()
return now >= self.pub\_date >= now - datetime.timedelta(days=1)
class Choices(models.Model):
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
questions = models.ForeignKey(Questions, on_delete=models.CASCADE)
def \_\_str\_\_(self):
return self.choice\_text
test1/polls/views.py
from django.shortcuts import render, get_object_or_404, redirect
from django.urls import reverse
from polls.models import Questions, Choices
def index(request):
questions = Questions.objects.all()
return render(request, 'polls/index.html', {'title': '投票首页', 'questions': questions})
def detail(request, question_id):
question = Questions.objects.get(pk=question_id)
context = {'title': '投票选项', 'question': question}
return render(request, 'polls/detail.html', context)
def result(request, question_id):
question = Questions.objects.get(pk=question_id)
return render(request, 'polls/result.html', {'title': '投票结果', 'question': question})
def vote(request, question_id):
try:
choice = get_object_or_404(Choices, pk=request.POST['choice'])
except(KeyError, Choices.DoesNotExist):
question = Questions.objects.get(pk=question_id)
context = {'title': '投票选项', 'question': question, "error_message": "请选择后提交"}
return render(request, 'polls/detail.html', context)
choice.votes += 1
choice.save()
return redirect(reverse('polls:result', args=(question\_id, )))
test1/polls/urls.py
from django.urls import path
from . import views
app_name = 'polls'
urlpatterns = [
path('', views.index, name='index'),
path('
path('
path('
]
test1/templates/polls/index.html
{{ error_msg }}
<ul>
{% for question in questions %}
<li><a href="{% url 'polls:detail' question.id %}">{{ question.question\_text }}</a></li>
{% endfor %}
</ul>
test1/templates/polls/detail.html
<form action="{% url 'polls:vote' question.id %}" method="post">
{% csrf\_token %}
{% for choice in question.choices\_set.all %}
<div>
<input type="radio" name="choice" id="{{ forloop.counter }}" value="{{ choice.id }}">
<label for="{{ forloop.counter }}">{{ choice.choice\_text }}</label>
</div>
{% endfor %}
<button type="submit">提交</button>
{% if error\_message %}
<p><strong>{{ error\_message }}</strong></p>
{% endif %}
</form>
<div><a href="{% url 'polls:index' %}">返回首页</a></div>
test1/templates/polls/result.html
{{choice.choice_text}}------{{choice.votes}}票
测试数据.sql
INSERT INTO `polls_questions`(`id`, `quetion_text`, `pub_date`) VALUES
(1, '今天吃什么?', '2020-10-31 14:40:30.000000'),
(2, '你的休闲方式?', '2020-10-31 14:40:56.000000');
INSERT INTO `polls_choices`(`id`, `choice_text`, `votes`, `questions_id`) VALUES
(1, '麻辣火锅', 0, 1),
(2, '串串', 0, 1),
(3, '吃饭', 0, 2),
(4, '睡觉', 0, 2),
(5, '打豆豆', 0, 2);
对于 test1/polls/views.py 文件中的 detail()
和 results()
视图都很精简 。用来显示一个投票列表的 index()
视图也和它们类似。
这些视图反映基本的 Web 开发中的一个常见情况:根据 URL 中的参数从数据库中获取数据、载入模板文件然后返回渲染后的模板。 由于这种情况特别常见,Django 提供一种快捷方式,叫做“通用视图”系统。
通用视图将常见的模式抽象化,可以使你在编写应用时甚至不需要编写Python代码。
让我们将我们的投票应用转换成使用通用视图系统,这样我们可以删除许多我们的代码。我们仅仅需要做以下几步来完成转换,我们将:
首先,打开 polls/urls.py
这个 URLconf 并将它修改成:
from django.urls import path
from . import views
app_name = 'polls'
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
path('
path('
path('
]
注意,第二个和第三个匹配准则中,路径字符串中匹配模式的名称已经由 <question_id>
改为 <pk>
。
下一步,我们将删除旧的 index
, detail
, 和 results
视图,并用 Django 的通用视图代替。打开 polls/views.py
文件,并将它修改成:
from django.shortcuts import render, get_object_or_404, redirect
from django.urls import reverse
from polls.models import Questions, Choices
from django.views import generic
from django.utils import timezone
from django.http import HttpResponse
class IndexView(generic.ListView):
# 关联模板名称
template_name = 'polls/index.html' # 也可以在urls的.as_view()中当成参数传入
# 指定模板上下文的名称
context_object_name = 'questions'
# 数据过滤
def get\_queryset(self):
"""返回 pub\_date小于等于当前时间的数据,并按pub\_date倒序排序"""
questions = Questions.objects.filter(pub\_date\_\_lte=timezone.now()).order\_by('-pub\_date')
print(questions)
return questions
# 提供额外的上下文变量
def get\_context\_data(self, \*, object\_list=None, \*\*kwargs):
context = super(IndexView, self).get\_context\_data(\*\*kwargs)
context\["title"\] = '投票项'
if not context\["questions"\]:
context\["error\_msg"\] = "No polls are available."
return context
class DetailView(generic.DetailView):
template_name = 'polls/detail.html'
# 关联模型
model = Questions
context_object_name = 'question'
def get\_queryset(self):
return Questions.objects.filter(pub\_date\_\_lte=timezone.now())
# 提供额外的上下文变量
def get\_context\_data(self, \*, object\_list=None, \*\*kwargs):
context = super(DetailView, self).get\_context\_data(\*\*kwargs)
context\["title"\] = '投票详情'
return context
class ResultView(generic.DetailView):
template_name = 'polls/result.html'
model = Questions
context_object_name = 'question'
# 提供额外的上下文变量
def get\_context\_data(self, \*, object\_list=None, \*\*kwargs):
context = super(ResultView, self).get\_context\_data(\*\*kwargs)
context\["title"\] = '投票结果'
return context
def vote(request, question_id):
try:
choice = get_object_or_404(Choices, pk=request.POST['choice'])
except(KeyError, Choices.DoesNotExist):
question = Questions.objects.get(pk=question_id)
context = {'title': '投票详情', 'question': question, "error_message": "请选择后提交"}
return render(request, 'polls/detail.html', context)
choice.votes += 1
choice.save()
return redirect(reverse('polls:result', args=(question\_id,)))
template_name 属性来告诉视图使用哪个模板,
model 属性决定每个通用视图作用于哪个模型。
我们在这里使用两个通用视图: ListView 和 DetailView 。这两个视图分别抽象“显示对象列表”和“显示一个特定类型对象的详细信息页面”这两种概念。
DetailView 期望从 URL 中捕获参数为 "pk" 的主键值,所以我们为通用视图把 question_id 改成 pk 。
默认情况下,通用视图 DetailView 默认使用一个叫做
通用视图 DetailView 使用一个叫做
类似地,ListView 使用一个叫做
在之前的教程中,提供模板文件时都带有一个包含 question 和 latest_question_list 变量的 context。
对于 DetailView , question 变量会自动提供——因为我们使用 Django 的模型 (Question), Django 能够为 context 变量决定一个合适的名字。
然而对于 ListView, 自动生成的 context 变量是 question_list。为了覆盖这个行为,我们提供 context_object_name 属性,表示我们想使用 questions。
作为一种替换方案,你可以改变你的模板来匹配新的 context 变量 —— 这是一种更便捷的方法,告诉 Django 使用你想使用的变量名。
手机扫一扫
移动阅读更方便
你可能感兴趣的文章