标签:变量 应用 code 参数 lan for 方法 ber 思想
<h1>{{ post.title }}</h1>
Jinja2 模版中的变量代码块可以是任意 Python 类型或者对象,只要它能够被 Python 的 str() 方法转换为一个字符串就可以,比如,可以通过下面的方式显示一个字典或者列表中的某个元素:
{{your_dict[‘key‘]}}
{{your_list[0]}}
{% if user %}
{{ user }}
{% else %}
hello!
<ul>
{% for index in indexs %}
<li> {{ index }} </li>
{% endfor %}
</ul>
{# {{ name }} #}
标签:变量 应用 code 参数 lan for 方法 ber 思想
原文地址:https://www.cnblogs.com/3-tong/p/9348197.html