时间: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 库让你相见恨晚?
关键词:模板