Chinaunix首页 | 论坛 | 博客
  • 博客访问: 287945
  • 博文数量: 33
  • 博客积分: 861
  • 博客等级: 军士长
  • 技术积分: 325
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-26 09:35
文章存档

2013年(1)

2012年(8)

2011年(25)

分类: 系统运维

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',{'变量名':'变量值'})
以上集中体现了模板使用方法的改进过程,现在常用的为第四种方案 (不可直接拷贝,里边有不少中文字符,理解方是上策)

阅读(4265) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~