Django 学习之模板变量
本文和大家分享的主要是django中模板变量相关内容,一起来看看吧,希望对大家学习django有所帮助。
1.传入普通变量
在hello/Hello World/temlplates/index.html中,修改html文件
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<title>{{title}}</title>
<meta charset="utf-8">
</head>
<body>
<h1> Hello {{name}}</h1>
</body>
</html>
接着在hello/Hello World/views.py文件中,修改views.py
from django.shortcuts import render
def index(request):
return render(request,'index.html',{'title':'Welcome','name':'KeinLee'})
然%
页:
[1]