Django 入门学习总结5

修改polls/detail.html文件,写一个表单:

<form action="{% url 'polls:vote' question.id %}" method="post">

{% csrf_token %}

<fieldset>

<legend><h1>{{ question.question_text }}</h1></legend>

{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}

{% for choice in question.choice_set.all %}

<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}">

<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br>

{% endfor %}

</fieldset>

<input type="submit" value="Vote">

</form>

修改polls/views.py文件:

from django.http import HttpResponse, HttpResponseRedirect

from django.shortcuts import get_object_or_404, render

from django.urls import reverse

from .models import Choice, Question

...

def vote(request, question_id):

question = get_object_or_404(Question, pk=question_id)

try:

selected_choice = question.choice_set.get(pk=request.POST["choice"])

except (KeyError, Choice.DoesNotExist):

Redisplay the question voting form.

return render(

request,

"polls/detail.html",

{

"question": question,

"error_message": "You didn't select a choice.",

},

)

else:

selected_choice.votes += 1

selected_choice.save()

Always return an HttpResponseRedirect after successfully dealing

with POST data. This prevents data from being posted twice if a

user hits the Back button.

return HttpResponseRedirect(reverse("polls:results", args=(question.id,)))

和结果方法:

def results(request, question_id):

question = get_object_or_404(Question, pk=question_id)

return render(request, "polls/results.html", {"question": question})

创建polls/results.html页面,内容为:

最好用少的代码

修改polls/urls.py文件为:

from django.urls import path

from . import views

app_name = "polls"

urlpatterns = [

path("", views.IndexView.as_view(), name="index"),

path("<int:pk>/", views.DetailView.as_view(), name="detail"),

path("<int:pk>/results/", views.ResultsView.as_view(), name="results"),

path("<int:question_id>/vote/", views.vote, name="vote"),

]

修改视图

修改文件polls/views.py:

from django.http import HttpResponseRedirect

from django.shortcuts import get_object_or_404, render

from django.urls import reverse

from django.views import generic

from .models import Choice, Question

class IndexView(generic.ListView):

template_name = "polls/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 = "polls/detail.html"

class ResultsView(generic.DetailView):

model = Question

template_name = "polls/results.html"

可以重新在网址上测试下。

相关推荐
hj10433 小时前
redis开启局域网访问
数据库·redis·缓存
广东小63 小时前
【昇腾】关于Atlas 200I A2加速模块macro0配置3路PCIE+1路SATA在hboot2中的一个bug_20250812
学习·性能优化
源代码•宸4 小时前
MySQL 索引:索引为什么使用 B+树?(详解B树、B+树)
数据结构·数据库·经验分享·b树·mysql·b+树·b-树
睡觉的时候不会困5 小时前
MySQL 数据库表操作与查询实战案例
数据库·mysql
秋已杰爱5 小时前
Redis常见命令
数据库·redis·缓存
一个有梦有戏的人6 小时前
软考架构师:数据库的范式
数据库·oracle
stray小书童7 小时前
neo4j数据库实战
数据库·neo4j
朱小弟cs67 小时前
Orange的运维学习日记--41.Ansible基础入门
linux·运维·学习·ci/cd·自动化·ansible·devops
时序数据说7 小时前
时序数据库为什么选IoTDB?
大数据·数据库·物联网·开源·时序数据库·iotdb
future14128 小时前
串口通信学习
学习