1、修改html页面(index.html)代码
<html>
<head>
<title>{{title}}</title>
</head>
<body>
<h1>hello {{name}}</h1> //定义变量方法,{{name}}
</body>
</html>
2、修改views.py文件
# -*- coding: cp936 -*-
from django.http import HttpResponse
#导入templates相关包;loader:加载器,加载html模板
from django.template import loader,Context
#定义一个index视图
def index(request):
t=loader.get_template(‘index.html‘)
#向html页面传递数据
c=Context({‘title‘:‘Django‘,‘name‘:‘xiaodeng‘})
#渲染方法
t=t.render(c)
return HttpResponse(t)
时间: 2024-10-10 04:19:33