django模板学习笔记
程序员文章站
2022-07-14 22:42:38
...
模板文件
1,在我们的总项目下,有一个temple目录,创建index的HTML文件<body>
<h1>hello django</h1>
</body>
<body>
<img src="static/banner01.jpg">
</body>
</html>
2,查看配置文件setting
3,视图文件中访问模板文件
from django.http import HttpResponse
from django.shortcuts import render
# Create your views here.
# 视图就是一个函数
def index(request):
return render(request,'index.html')
# return HttpResponse('hello django')
查看页面:
静态文件配置
在setting文件中,配置:
# 静态文件路径
STATICFILES_DIRS = [os.path.join(BASE_DIR,'static')]
这样就可以访问静态页面了
下一篇: verilog使用可综合的for语句