- 所有的控制语句都是放在{% ... %}中,并且有一个语句{% endxxx %}来结束。jinja2中常用的有if/for ...in...
- if:if语句和python中的类似,可以使用>,<,<=,>=,!=,==来进行判断,也可以通过and,or,not,()来进行逻辑合并操作。
{% if mia.sick %}
Mia is sick
{% elif mia.dead %}
so happy.
{% else %}
Mia looks okay
{% endif %}
- 普通的遍历
<url>
{% for user in users %}
<li>{{ user }} </li>
{% endfor %}
</url>
- 遍历字典
<dl> {% for key,value in my_dict.items{} %} <dt>{{ key }}</dt> <dd>{{ value }}</dd> {% endfor %} </dl>
-
并且jinja中的for 循环还包含以下变量,可以用来获取当前的遍历状态
- 另外,不可以使用continue和break表达式来控制循环的执行
宏
- 模版中的宏根python中的函数类似,可以传递参数,但是不能有返回值,可以将一些经常用到的代码片段放到宏中,然后把一些不固定的值抽取出来当成一个变量
<body>
{% macro input(name,value='',type='text') %}
<input type="{{ type }}" name="{{ name }}" value="{{ value }}">
{% endmacro %}
<table>
<tr>
<td>用户名:</td>
<td<{{ input('username') }}</td>
</tr>
</table>
- 以上例子可以抽取出了一个input标签,指定了一些默认参数,那么我们以后创建input标签的时候,可以通过他快速的创建
<p>{{ input('username') }}</p>
<p>{{ input('password', type='password') }}</p>
import 语句
- 在真实的开发中,会将一些常用的宏单独放在一个文件中,在需要使用的时候,再从这个文件中进行导入。import语句的用法根python中的import类似,可以直接import...as...,也可以from...import...。
{% autoescape off %}
<p>{{ es }}</p>
{% endautoescape %}
## 关闭转义 或者使用<p>{{ es|safe }}</p>
主py文件中写入:
app.route('/index1')
def index():
context = {
'username': 'mia',
'age': -18,
'name': 'luoji',
'es': "<script>alert('报警');</script>",
'books':['py','xiuxiu','weiwei'],
'book': {'java': 'name'}
}
return render_template('index.html',**context)
- 则页面的弹窗就会出现。
inclue语句
- include语句可以把一个模版引入到lingerie模版中,类似将一个模版的代码拷贝到另一个模版的指定位置
{% include 'index.html' %}
主体
{% include 'footer.html' %}
赋值语句(set)
- 如果我们想要在模版中添加变量,可以使用set赋值语句
{% set username='mia' %}
{% include 'commit/header.html' %}
<h1>列表页面</h1>
<p>{{ username }}</p>
{% with %}
{% set username='li' %}
<p>{{ username }}</p>
{% endwith %}
模版继承
- flask的模版可以继承,通过继承可以将模版中许多重复出现的元素抽取出来,放在父模版中,并且父模版通过定义block给子模版开一个口,子模版根据需要,再实现这个block,假设现在有一个base.html