Python系列视频教程: Django【13讲】第二讲 模板文件的导入
step1:
创建一个模板文件
Bluefish2.2.0
xhtml文件
step2:修改views.py
from django.http import HttpResponse
from django.template import loader,Context
def index(req):
t=loader.get_template('index.html')
#c存放数据
c=Context({})
#return HttpResponse('<h1>hello world, welcome to Django</h1>')
#通过模板t渲染context数据
return HttpResponse(t.render(c))
step3:修改index函数
from django.http import HttpResponse
from django.template import loader,Context
from django.shortcuts import render_to_response
# Create your views here.
def index(req):
#第一个参数是模板文件,第二个参数context数据
return render_to_response('index.html',{})
上面会出错
把中文注释去掉,就正确了
from django.shortcuts import render_to_response
# Create your views here.
def index(req):
return render_to_response('index.html',{})