from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
from .models import Question, Choice
# from django.template import loader
from django.shortcuts import render
from django.shortcuts import get_object_or_404
from django.http import HttpResponseRedirect
from django.urls import reverse
from django.views import generic
from django.utils import timezone
#views实际上是一个控制器,控制你前端要显示什么,MTV =MVC,接收urls传来的指令
# def index(request):
# return HttpResponse('Hello 222,world. You\'re at the polls index.--邹涛')
# def index(request):
# #order_by : 倒序:- 正序:不加-即可。 0-5条数据
# latest_question_list = Question.objects.order_by('-pub_date')[:5]
# #
# output = '<br/> '.join([q.question_text for q in latest_question_list])
# return HttpResponse(output)
#写了html以后这里引入,常规的函数方式:
# def index(request):
# #获取数据然后排序,显示前5条数据
# latest_question_list = Question.objects.order_by('-pub_date')[:5]
# #templates是django系统下的,默认自动去到该路径下。注释的方法一
# # template = loader.get_template('polls/index.html')
# context = {
# 'latest_question_list':latest_question_list,
# }
# #render 表示django渲染(=显示)模板,需要获得参数context上下文
# # return HttpResponse(template.render(context,request))
# #方法二:django提供了最直接的方式,render渲染方式。
# return render(request,'polls/index.html',context)
#面向对象OOP方式来写index页:通用View结尾
class IndexView(generic.ListView):
"""固定名称,来自于listview下的"""
template_name = 'polls/index.html'
context_object_name = 'latest_question_list'
"""也是固定用法函数名"""
def get_queryset(self):
return Question.objects.order_by('-pub_date')[:5]
#详情页面--开始使用渲染传到前端_更改详情页面
# def detail(request, question_id):
# question = get_object_or_404(Question, pk=question_id)
# return render(request, 'polls/detail.html',{'question':question})
#面向对象OOP方式来写详情页:继承
class DetailView(generic.DetailView):
model = Question
template_name = 'polls/detail.html'
#问题记录发布时间要小于等于当前时间
def get_queryset(self):
return Question.objects.filter(pub_date__lte=timezone.now())
#结果页面
# def results(request,question_id):
# response = "You're looking at question--—— %s."
# return HttpResponse(response % question_id)
#渲染版
# def results(request, question_id):
# question = get_object_or_404(Question, pk=question_id)
# return render(request, 'polls/results.html', {'question': question})
#面向对象OOP版来写结果页:继承datailview
class ResultsView(generic.DetailView):
model = Question
template_name = 'polls/results.html'
#投票页==添加到urls里面
# def vote(request,question_id):
# return HttpResponse("You're looking at question %s."%question_id)
def vote(request, question_id):
#固定写法404,如果页面不存在,自动返回404页面。而不是直接报错
question = get_object_or_404(Question, pk=question_id)
try:
selected_choice = question.choice_set.get(pk=request.POST['choice'])
except (KeyError,Choice.DoesNotExist):
return render(request, 'polls/detail.html',{
'question': question,
'error_message': "亲,还没选择哟!",
})
else:
selected_choice.votes += 1
selected_choice.save()
return HttpResponseRedirect(reverse('polls:results', args=(question_id,)))
没有合适的资源?快使用搜索试试~ 我知道了~
基于python框架django开发在线投票系统
共36个文件
py:16个
pyc:13个
html:3个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 12 下载量 163 浏览量
2022-06-29
22:33:17
上传
评论 5
收藏 227KB RAR 举报
温馨提示
最新技术python web使用django框架做的投票系统 运行环境 django+python+sublime text3+sqlite 项目技术(必填) django+python+sublime text3+navicat Premium+html+jquery 数据库文件 放于mysite根目录下的db.sqlite3文件 jar包文件 pythonweb,无需jar
资源推荐
资源详情
资源评论
收起资源包目录
3727692753814528.rar (36个子文件)
project
django-admin.py 128B
mysite
polls
models.py 1KB
apps.py 85B
templates
polls
index.html 1KB
results.html 695B
detail.html 856B
__pycache__
admin.cpython-36.pyc 561B
apps.cpython-36.pyc 353B
views.cpython-36.pyc 2KB
urls.cpython-36.pyc 501B
__init__.cpython-36.pyc 139B
models.cpython-36.pyc 1KB
static
polls
images
background.jpg 104KB
background1.jpg 97KB
style.css 223B
__init__.py 0B
migrations
__pycache__
0001_initial.cpython-36.pyc 758B
0002_choice.cpython-36.pyc 916B
__init__.cpython-36.pyc 150B
0002_choice.py 780B
__init__.py 0B
0001_initial.py 645B
views.py 4KB
admin.py 435B
tests.py 60B
urls.py 1KB
db.sqlite3 140KB
mysite
__pycache__
urls.cpython-36.pyc 982B
__init__.cpython-36.pyc 140B
settings.cpython-36.pyc 2KB
wsgi.cpython-36.pyc 542B
wsgi.py 390B
__init__.py 0B
settings.py 3KB
urls.py 997B
manage.py 804B
共 36 条
- 1
办公模板库素材蛙
- 粉丝: 1673
- 资源: 2299
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- lsb-release,安装磐维数据库,安装oracle数据库等常用的依赖包
- glibc-devel,安装磐维数据库,安装oracle数据库等常用的依赖包
- redhat-lsb-submit-security,安装磐维数据库,安装oracle数据库等常用的依赖包
- 可以在mac下开发的微雪esp32触摸屏开发板的支持包
- redhat-lsb-core,安装磐维数据库,安装oracle数据库等常用的依赖包
- redhat-lsb-core,安装磐维数据库,安装oracle数据库等常用的依赖包
- 非常好的在线聊天系统源代码100%好用.zip
- libpng,安装磐维数据库,安装oracle数据库等常用的依赖包
- 飞机检测12-YOLO(v5至v9)、COCO、CreateML、Darknet、Paligemma、TFRecord数据集合集.rar
- redhad-lsb,安装磐维数据库,安装oracle数据库等常用的依赖包
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
前往页