全部博文(33)
分类: 系统运维
2011-02-26 10:04:42
总结了下,一般情况django里模板用法有多种(以下有省略),网站设计常用的是最后一种 1、
from django.template import Context,Template
t=Template("......{%代码段%}与{{变量}}的组合......")
c=Context({'变量':'变量值'})
t.render(c) //////输出
2、在视图中使用模板
from django.http import HttpResponse
def function(request):
html="模板代码(变量用%s)"%变量值
return HttpResponse(html)
3、鉴于django要求模板与视图函数分离的要求以上做法仍未达到,故有了以下做法: 加载模板
from django.template.loader import get_template
from django.template import Context
from django.Http import HttpResponse
def Function(request):
t=grt_template('filename.html')
html=t.render(Context({'变量':'变量值'}))
return HttpResponse(html)
4、改进方案
from django.shortcuts
import render_to_response
def function(request)
return_to_response('filename.html',{'变量名':'变量值'})
以上集中体现了模板使用方法的改进过程,现在常用的为第四种方案 (不可直接拷贝,里边有不少中文字符,理解方是上策) |