python Django模板的使用方法(图文)


Posted in Python onNovember 04, 2013

模版基本介绍
模板是一个文本,用于分离文档的表现形式和内容。 模板定义了占位符以及各种用于规范文档该如何显示的各部分基本逻辑(模板标签)。 模板通常用于产生HTML,但是Django的模板也能产生任何基于文本格式的文档。
来一个项目说明
1、建立MyDjangoSite项目具体不多说,参考前面。
2、在MyDjangoSite(包含四个文件的)文件夹目录下新建templates文件夹存放模版。
3、在刚建立的模版下建模版文件user_info.html

<html>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>用户信息</title>
    <head></head>
    <body>
        <h3>用户信息:</h3>
        <p>姓名:{{name}}</p>
        <p>年龄:{{age}}</p>
    </body>
</html>

说明:{{ name }}叫做模版变量;{% if xx %} ,{% for x in list %}模版标签。

4、修改settings.py 中的TEMPLATE_DIRS
导入import os.path
添加 os.path.join(os.path.dirname(__file__), 'templates').replace('\\','/'),

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
    #"E:/workspace/pythonworkspace/MyDjangoSite/MyDjangoSite/templates",
    os.path.join(os.path.dirname(__file__), 'templates').replace('\\','/'),
)

说明:指定模版加载路径。其中os.path.dirname(__file__)为当前settings.py的文件路径,再连接上templates路径。

5、新建视图文件view.py

#vim: set fileencoding=utf-8:
#from django.template.loader import get_template
#from django.template import Context
#from django.http import HttpResponse
from django.shortcuts import render_to_response
def user_info(request):
    name = 'zbw'
    age = 24
    #t = get_template('user_info.html')
    #html = t.render(Context(locals()))
    #return HttpResponse(html)
    return render_to_response('user_info.html',locals())

说明:Django模板系统的基本规则: 写模板,创建 Template 对象,创建 Context , 调用 render() 方法。
可以看到上面代码中注释部分
#t = get_template('user_info.html') #html = t.render(Context(locals()))
#return HttpResponse(html)
get_template('user_info.html'),使用了函数 django.template.loader.get_template() ,而不是手动从文件系统加载模板。 该 get_template() 函数以模板名称为参数,在文件系统中找出模块的位置,打开文件并返回一个编译好的 Template 对象。
render(Context(locals()))方法接收传入一套变量context。它将返回一个基于模板的展现字符串,模板中的变量和标签会被context值替换。其中Context(locals())等价于Context({'name':'zbw','age':24}) ,locals()它返回的字典对所有局部变量的名称与值进行映射。
render_to_response Django为此提供了一个捷径,让你一次性地载入某个模板文件,渲染它,然后将此作为 HttpResponse返回。

6、修改urls.py
 

 from django.conf.urls import patterns, include, url
from MyDjangoSite.views import user_info
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'MyDjangoSite.views.home', name='home'),
    # url(r'^MyDjangoSite/', include('MyDjangoSite.foo.urls')),
    # Uncomment the admin/doc line below to enable admin documentation:
    # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
    # Uncomment the next line to enable the admin:
    # url(r'^admin/', include(admin.site.urls)),
    url(r'^u/$',user_info),
)
 

7、启动开发服务器
基本一个简单的模版应用就完成,启动服务看效果!
效果如图:

python Django模板的使用方法(图文)

模版的继承
减少重复编写相同代码,以及降低维护成本。直接看应用。
1、新建/templates/base.html

<html>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>{% block title %}{% endblock %}</title>
    <head></head>
    <body>
        <h3>{% block headTitle %}{% endblock %}</h3>
        {% block content %} {% endblock %}
        {% block footer %}
            <h3>嘿,这是继承了模版</h3>
        {% endblock%}
    </body>
</html>

2、修改/template/user_info.html,以及新建product_info.html
urser_info.html
{% extends "base.html" %}
{% block title %}用户信息{% endblock %}

<h3>{% block headTitle %}用户信息:{% endblock %}</h3>
{% block content %}
<p>姓名:{{name}}</p>
<p>年龄:{{age}}</p>
{% endblock %}

product_info.html
{% extends "base.html" %}
{% block title %}产品信息{% endblock %}
<h3>{% block headTitle %}产品信息:{% endblock %}</h3>
{% block content %}
    {{productName}}
{% endblock %}

3、编写视图逻辑,修改views.py
#vim: set fileencoding=utf-8:
#from django.template.loader import get_template
#from django.template import Context
#from django.http import HttpResponse
from django.shortcuts import render_to_response
def user_info(request):
    name = 'zbw'
    age = 24
    #t = get_template('user_info.html')
    #html = t.render(Context(locals()))
    #return HttpResponse(html)
    return render_to_response('user_info.html',locals())
def product_info(request):
    productName = '阿莫西林胶囊'
    return render_to_response('product_info.html',{'productName':productName})

4、修改urls.py

from django.conf.urls import patterns, include, url
from MyDjangoSite.views import user_info,product_info
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'MyDjangoSite.views.home', name='home'),
    # url(r'^MyDjangoSite/', include('MyDjangoSite.foo.urls')),
    # Uncomment the admin/doc line below to enable admin documentation:
    # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
    # Uncomment the next line to enable the admin:
    # url(r'^admin/', include(admin.site.urls)),
    url(r'^u/$',user_info),
    url(r'^p/$',product_info),
)

5、启动服务效果如下:

python Django模板的使用方法(图文)

Python 相关文章推荐
Python break语句详解
Mar 11 Python
python将字典内容存入mysql实例代码
Jan 18 Python
Python 记录日志的灵活性和可配置性介绍
Feb 27 Python
python3.6实现学生信息管理系统
Feb 21 Python
使用Python操作FTP实现上传和下载的方法
Apr 01 Python
Python3.5面向对象程序设计之类的继承和多态详解
Apr 24 Python
使用python制作一个为hex文件增加版本号的脚本实例
Jun 12 Python
flask框架单元测试原理与用法实例分析
Jul 23 Python
python实现手势识别的示例(入门)
Apr 15 Python
Python应用实现处理excel数据过程解析
Jun 19 Python
Python魔术方法专题
Jun 19 Python
Python制作运行进度条的实现效果(代码运行不无聊)
Feb 24 Python
使用python Django做网页
Nov 04 #Python
教你安装python Django(图文)
Nov 04 #Python
python条件和循环的使用方法
Nov 01 #Python
讲解python参数和作用域的使用
Nov 01 #Python
python列表与元组详解实例
Nov 01 #Python
python创建和使用字典实例详解
Nov 01 #Python
python分割和拼接字符串
Nov 01 #Python
You might like
PHP高级对象构建 多个构造函数的使用
2012/02/05 PHP
php 批量替换程序的具体实现代码
2013/10/04 PHP
限制ckeditor上传图片文件大小的方法
2013/11/15 PHP
ThinkPHP采用GET方式获取中文参数查询无结果的解决方法
2014/06/26 PHP
ThinkPHP静态缓存简单配置和使用方法详解
2016/03/23 PHP
如何重写Laravel异常处理类详解
2020/12/20 PHP
JavaScript 动态创建VML的方法
2009/10/14 Javascript
拖动布局之保存布局页面cookies篇
2010/10/29 Javascript
jQuery前台数据获取实现代码
2011/03/16 Javascript
详解jquery中$.ajax方法提交表单
2014/11/03 Javascript
前端必备神器 Snap.svg 弹动效果
2014/11/10 Javascript
js获取对象、数组的实际长度,元素实际个数的实现代码
2016/06/08 Javascript
JS获取鼠标相对位置的方法
2016/09/20 Javascript
js下载文件并修改文件名
2017/05/08 Javascript
bootstrap confirmation按钮提示组件使用详解
2017/08/22 Javascript
详解vue的diff算法原理
2018/05/20 Javascript
angular6.0开发教程之如何安装angular6.0框架
2018/06/29 Javascript
vue 解决addRoutes动态添加路由后刷新失效问题
2018/07/02 Javascript
mocha的时序规则讲解
2019/02/16 Javascript
jQuery模拟html下拉多选框的原生实现方法示例
2019/05/30 jQuery
python使用正则搜索字符串或文件中的浮点数代码实例
2014/07/11 Python
详解Python多线程
2016/11/14 Python
python的random模块及加权随机算法的python实现方法
2017/01/04 Python
python实现在一个画布上画多个子图
2020/01/19 Python
Python imutils 填充图片周边为黑色的实现
2020/01/19 Python
深入解析HTML5中的Blob对象的使用
2015/09/08 HTML / CSS
TCP/IP中的TCP和IP分别承担什么责任
2012/04/21 面试题
幼儿园开学家长寄语
2014/01/19 职场文书
周年庆典邀请函范文
2014/01/24 职场文书
电子商务专业求职信
2014/03/08 职场文书
主管竞聘书范文
2014/03/31 职场文书
五一口号
2014/06/19 职场文书
12.4全国法制宣传日活动方案
2014/11/02 职场文书
介绍信怎么写
2015/01/30 职场文书
吃通javascript正则表达式
2021/04/21 Javascript
详解Python中下划线的5种含义
2021/07/15 Python