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爬取qq空间说说的实例代码
Aug 17 Python
Python3.6简单的操作Mysql数据库的三个实例
Oct 17 Python
对python创建及引用动态变量名的示例讲解
Nov 10 Python
对python numpy.array插入一行或一列的方法详解
Jan 29 Python
Python去除字符串前后空格的几种方法
Mar 04 Python
Python 实现毫秒级淘宝抢购脚本的示例代码
Sep 16 Python
python 实现图片上传接口开发 并生成可以访问的图片url
Dec 18 Python
Python调用接口合并Excel表代码实例
Mar 31 Python
Python实现验证码识别
Jun 15 Python
python如何快速生成时间戳
Jul 21 Python
关于Python3爬虫利器Appium的安装步骤
Jul 29 Python
解决Ubuntu18中的pycharm不能调用tensorflow-gpu的问题
Sep 17 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中DOMElement操作xml文档实例演示
2013/03/26 PHP
php实现批量下载百度云盘文件例子分享
2014/04/10 PHP
php实现微信公众平台账号自定义菜单类
2015/10/11 PHP
PHP实现带重试功能的curl连接示例
2016/07/28 PHP
使用jQuery的将桌面应用程序引入浏览器
2010/11/19 Javascript
JS中setInterval、setTimeout不能传递带参数的函数的解决方案
2013/04/28 Javascript
30个经典的jQuery代码开发技巧
2014/12/15 Javascript
node.js中的fs.lstatSync方法使用说明
2014/12/16 Javascript
Jquery实现图片预加载与延时加载的方法
2014/12/22 Javascript
javascript中checkbox使用方法实例演示
2015/11/19 Javascript
JS、jQuery中select的用法详解
2016/04/21 Javascript
Bootstrap Table使用心得总结
2016/11/29 Javascript
vuejs指令详解
2017/02/07 Javascript
浅谈Vue网络请求之interceptors实际应用
2018/02/28 Javascript
详解处理bootstrap4不支持远程静态框问题
2018/07/20 Javascript
jquery实现Ajax请求的几种常见方式总结
2019/05/28 jQuery
ES6中let、const的区别及变量的解构赋值操作方法实例分析
2019/10/15 Javascript
[01:59]深扒TI7聊天轮盘语音出处 1
2017/05/11 DOTA
使用Python从有道词典网页获取单词翻译
2016/07/03 Python
轻松掌握python设计模式之访问者模式
2016/11/18 Python
python 容器总结整理
2017/04/04 Python
matplotlib实现热成像图colorbar和极坐标图的方法
2018/12/13 Python
django实现web接口 python3模拟Post请求方式
2019/11/19 Python
利用matplotlib实现根据实时数据动态更新图形
2019/12/13 Python
python实现飞机大战游戏(pygame版)
2020/10/26 Python
详解CSS3的图层阴影和文字阴影效果使用
2016/06/09 HTML / CSS
西班牙英格列斯百货官网:El Corte Inglés
2016/09/25 全球购物
LivingSocial英国:英国本地优惠
2019/02/22 全球购物
介绍一下Python中webbrowser的用法
2013/05/07 面试题
网络信息管理员岗位职责
2014/01/05 职场文书
党的群众路线个人对照检查材料
2014/09/23 职场文书
夫妻双方自愿离婚协议书
2014/10/24 职场文书
大学迎新生欢迎词
2015/09/29 职场文书
2016年六一儿童节开幕词
2016/03/04 职场文书
超级详细实用的pycharm常用快捷键
2021/05/12 Python
Python Django / Flask如何使用Elasticsearch
2022/04/19 Python