Django框架中方法的访问和查找


Posted in Python onJuly 15, 2015

在 Django 模板中遍历复杂数据结构的关键是句点字符 (.)。

最好是用几个例子来说明一下。 比如,假设你要向模板传递一个 Python 字典。 要通过字典键访问该字典的值,可使用一个句点:

>>> from django.template import Template, Context
>>> person = {'name': 'Sally', 'age': '43'}
>>> t = Template('{{ person.name }} is {{ person.age }} years old.')
>>> c = Context({'person': person})
>>> t.render(c)
u'Sally is 43 years old.'

同样,也可以通过句点来访问对象的属性。 比方说, Python 的 datetime.date 对象有 year 、 month 和 day 几个属性,你同样可以在模板中使用句点来访问这些属性:

>>> from django.template import Template, Context
>>> import datetime
>>> d = datetime.date(1993, 5, 2)
>>> d.year
1993
>>> d.month
5
>>> d.day
2
>>> t = Template('The month is {{ date.month }} and the year is {{ date.year }}.')
>>> c = Context({'date': d})
>>> t.render(c)
u'The month is 5 and the year is 1993.'

这个例子使用了一个自定义的类,演示了通过实例变量加一点(dots)来访问它的属性,这个方法适用于任意的对象。

>>> from django.template import Template, Context
>>> class Person(object):
...  def __init__(self, first_name, last_name):
...   self.first_name, self.last_name = first_name, last_name
>>> t = Template('Hello, {{ person.first_name }} {{ person.last_name }}.')
>>> c = Context({'person': Person('John', 'Smith')})
>>> t.render(c)
u'Hello, John Smith.'

点语法也可以用来引用对象的* 方法*。 例如,每个 Python 字符串都有 upper() 和 isdigit() 方法,你在模板中可以使用同样的句点语法来调用它们:

>>> from django.template import Template, Context
>>> t = Template('{{ var }} -- {{ var.upper }} -- {{ var.isdigit }}')
>>> t.render(Context({'var': 'hello'}))
u'hello -- HELLO -- False'
>>> t.render(Context({'var': '123'}))
u'123 -- 123 -- True'

注意这里调用方法时并* 没有* 使用圆括号 而且也无法给该方法传递参数;你只能调用不需参数的方法。 (我们将在本章稍后部分解释该设计观。)

最后,句点也可用于访问列表索引,例如:

>>> from django.template import Template, Context
>>> t = Template('Item 2 is {{ items.2 }}.')
>>> c = Context({'items': ['apples', 'bananas', 'carrots']})
>>> t.render(c)
u'Item 2 is carrots.'

不允许使用负数列表索引。 像 {{ items.-1 }} 这样的模板变量将会引发`` TemplateSyntaxError``

Python 列表类型

一点提示: Python的列表是从0开始索引。 第一项的索引是0,第二项的是1,依此类推。

句点查找规则可概括为: 当模板系统在变量名中遇到点时,按照以下顺序尝试进行查找:

  •     字典类型查找 (比如 foo["bar"] )
  •     属性查找 (比如 foo.bar )
  •     方法调用 (比如 foo.bar() )
  •     列表类型索引查找 (比如 foo[bar] )

系统使用找到的第一个有效类型。 这是一种短路逻辑。

句点查找可以多级深度嵌套。 例如在下面这个例子中 {{person.name.upper}} 会转换成字典类型查找( person['name'] ) 然后是方法调用( upper() ):

>>> from django.template import Template, Context
>>> person = {'name': 'Sally', 'age': '43'}
>>> t = Template('{{ person.name.upper }} is {{ person.age }} years old.')
>>> c = Context({'person': person})
>>> t.render(c)
u'SALLY is 43 years old.'
Python 相关文章推荐
python求crc32值的方法
Oct 05 Python
Python日志模块logging简介
Apr 13 Python
Python基于有道实现英汉字典功能
Jul 25 Python
python 读取摄像头数据并保存的实例
Aug 03 Python
Python操作SQLite数据库过程解析
Sep 02 Python
Python要如何实现列表排序的几种方法
Feb 21 Python
PyCharm 在Windows的有用快捷键详解
Apr 07 Python
Python中使用socks5设置全局代理的方法示例
Apr 15 Python
pyspark给dataframe增加新的一列的实现示例
Apr 24 Python
Python matplotlib可视化实例解析
Jun 01 Python
基于Python的图像阈值化分割(迭代法)
Nov 20 Python
Python3中的tuple函数知识点讲解
Jan 03 Python
Python的Django框架中的Context使用
Jul 15 #Python
在Python的Django框架中创建和使用模版
Jul 15 #Python
详解Python的Django框架中的模版相关知识
Jul 15 #Python
Django中处理出错页面的方法
Jul 15 #Python
在Django中创建动态视图的教程
Jul 15 #Python
Python的Django框架中的URL配置与松耦合
Jul 15 #Python
Django查找网站项目根目录和对正则表达式的支持
Jul 15 #Python
You might like
谈谈PHP语法(4)
2006/10/09 PHP
Destoon旺旺无法正常显示,点击提示“会员名不存在”的解决办法
2014/06/21 PHP
ThinkPHP实现将本地文件打包成zip下载
2014/06/26 PHP
php实现获取及设置用户访问页面语言类
2014/09/24 PHP
javascript contains和compareDocumentPosition 方法来确定是否HTML节点间的关系
2010/02/04 Javascript
jQuery在vs2008及js文件中的无智能提示的解决方法
2010/12/30 Javascript
输入自动提示搜索提示功能的使用说明:sugggestion.txt
2013/09/02 Javascript
js修改input的type属性问题探讨
2013/10/12 Javascript
js写出遮罩层登陆框和对联广告并自动跟随滚动条滚动
2014/04/29 Javascript
使用CoffeeScrip优美方式编写javascript代码
2015/10/28 Javascript
跟我学习javascript的基本类型和引用类型
2015/11/16 Javascript
Jquery检验手机号是否符合规则并根据手机号检测结果将提交按钮设为不同状态
2015/11/26 Javascript
最好用的Bootstrap fileinput.js文件上传组件
2016/12/12 Javascript
教你用Cordova打包Vue项目的方法
2017/10/17 Javascript
浅谈ElementUI中switch回调函数change的参数问题
2018/08/24 Javascript
vue实现登录页面的验证码以及验证过程解析(面向新手)
2019/08/02 Javascript
JQuery事件冒泡和默认行为代码实例
2020/05/13 jQuery
token 机制和实现方式
2020/12/15 Javascript
python判断图片宽度和高度后删除图片的方法
2015/05/22 Python
Python的Django框架中使用SQLAlchemy操作数据库的教程
2016/06/02 Python
Windows下python3.7安装教程
2018/07/31 Python
python 列表递归求和、计数、求最大元素的实例
2018/11/28 Python
python 通过可变参数计算n个数的乘积方法
2019/06/13 Python
python实现美团订单推送到测试环境,提供便利操作示例
2019/08/09 Python
使用Python爬虫库requests发送请求、传递URL参数、定制headers
2020/01/25 Python
python用tkinter实现一个简易能进行随机点名的界面
2020/09/27 Python
html标签之Object和EMBED标签详解
2013/07/04 HTML / CSS
预订奥兰多和佛罗里达州公园门票:FloridaTix
2018/01/03 全球购物
《藤野先生》教学反思
2014/02/19 职场文书
2014年单位植树节活动方案
2014/03/23 职场文书
市级绿色学校申报材料
2014/08/25 职场文书
党员批评与自我批评总结
2014/10/15 职场文书
工程部文员岗位职责
2015/02/04 职场文书
工作简报范文
2015/07/21 职场文书
python基于tkinter制作无损音乐下载工具
2021/03/29 Python
Jupyter Notebook内使用argparse报错的解决方案
2021/06/03 Python