定州市网站建设_网站建设公司_jQuery_seo优化
2025/12/24 11:31:22 网站建设 项目流程

1、修改detail视图函数

# polls/views.py
from django.shortcuts import render, get_object_or_404
def detail(request, question_id):question = get_object_or_404(Question, pk=question_id)return render(request, "polls/detail.html", {"question": question})

2、添加detail页面

# polls/templates/polls/detail.html
<h1>{{ question.question_text }}</h1>
<ul>{% for choice in question.choice_set.all %}<li>{{ choice.choice_text }}</li>{% endfor %}
</ul>

4、访问存在的问题测试
image

3、访问不存在的问题测试
image

需要专业的网站建设服务?

联系我们获取免费的网站建设咨询和方案报价,让我们帮助您实现业务目标

立即咨询