变量
{{变量}}
- 变量的作用是计算并输出
- 变量名必须由字母、数字、下划线(不能以下划线开头)和点组成
- 当模版引擎遇到点如book.title,会按照下列顺序解析:
- 1.字典book['title']
- 2.先属性后方法,将book当作对象,查找属性title,如果没有再查找方法title()
- 3.如果是格式为book.0则解析为列表book[0]
- 如果变量不存在则插入空字符串''
- 在模板中调用方法时不能传递参数
示例
- 打开booktest/views.py文件,创建视图bianliang
def bianliang(request):
dict={'title':'字典键值'}
book=BookInfo()
book.btitle='对象属性'
context={'dict':dict,'book':book}
return render(request,'booktest/bianliang.html',context)
- 打开booktest/urls.py文件,配置url
url(r'^bianliang/$', views.bianliang),
- 在templates/booktest下创建bianliang.html
<html>
<head>
<title>变量</title>
</head>
<body>
{{dict.title}}
<hr>
{{book.btitle}}
</body>
</html>
http://127.0.0.1:8000/bianliang/