所有的控制语句都是放在{% xxx %}
中,并且有一个语句{% endxxx %}
来进行结束
格式:
<% if %>
<% else %>
<% endif %>
if语句的用法与python中的用法类似,可以使用>,<,<=,>=,==,!=
来进行判断,也可以通过and,or,not,()
来进行逻辑合并操作
html文件
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
{% if name == 'xxx' %}
<p>namep>
{% else %}
<p>未找到用户{{ name }}p>
{% endif %}
body>
html>
python文件
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
content = {
'name': 'cmy',
'age': 18
}
return render_template("test.html", **content)
if __name__ == '__main__':
app.run(debug=True)
格式:
<% for %>
<% endfor %>
Jinja中的for循环还包含以下变量,可以用来获取当前的遍历状态
变量 | 描述 |
---|---|
loop.index | 当前迭代的索引(从1开始) |
loop.index0 | 当前迭代的索引(从0开始) |
loop.first | 是否是第一次迭代,返回True或False |
loop.last | 是否是最后一次迭代,返回True或False |
loop.length | 序列的长度 |
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
{% for li in list1% }
<p>索引:{{ loop.index0 }} -> {{ li }}p>
{% endfor %}
body>
html>
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
content = {
'name': 'cmy',
'age': 18,
'list1': ['python', 'java', 'c', 'c++', 'c#']
}
return render_template("test.html", **content)
if __name__ == '__main__':
app.run(debug=True)
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
{% for bo in book %}
<p>{{bo}} p>
{% endfor %}
body>
html>
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
content = {
'name': 'cmy',
'age': 18,
'book': {
'name': 'python',
'price': 50,
'status': 'N'
}
}
return render_template("test.html", **content)
if __name__ == '__main__':
app.run(debug=True)
不可以使用continue和break关键字来控制循环的执行