15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > Python Web开发06-django模板

Python Web开发06-django模板

时间:2023-06-11 12:24:01 | 来源:网站运营

时间:2023-06-11 12:24:01 来源:网站运营

Python Web开发06-django模板:

四喜接着来!

模板

创建模板




'DIRS': [os.path.join(BASE_DIR, 'templates')],


定义模板

{{变量名}}{%代码段%}<html><head> <title>图书列表</title></head><body><h1>{{title}}</h1>{%for i in list%}{{i}}<br>{%endfor%}</body></html>

视图调用模板




#coding:utf-8from django.http import HttpResponsefrom django.template import loader,RequestContextdef index(request): # 1.获取模板 template=loader.get_template('booktest/index.html') # 2.定义上下文 context=RequestContext(request,{'title':'图书列表','list':range(10)}) # 3.渲染模板 return HttpResponse(template.render(context))


视图调用模板简写




#coding:utf-8from django.shortcuts import renderdef index(request): context={'title':'图书列表','list':range(10)} return render(request,'booktest/index.html',context)
友情提供
1.新手学习Python推荐的学习资源
2.Python 应该怎么学?
3.哪些 Python 库让你相见恨晚?

整理Python Web开发资料汇总
01-四喜Clion:Python Web开发-django搭建环境
02-四喜Clion:Python Web开发02-django创建图书管理项目
03-四喜Clion:Python Web开发03-django模型设计
04-四喜Clion:Python Web开发04-django后台管理
05-四喜Clion:Python Web开发05-django视图

下期整理 django 项目+源码 点击 @四喜Clion一起python到底~

关键词:模板

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭