欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jinja2

程序员文章站 2022-06-17 16:00:41
...

1.变量表示方法 {{var}}
2.if语句

{% if Ture %}
	<h1>123</h1>
{% endif %}

3.for语句

{% for i in users %}
	<h1> {{ i }} </h1>
{% endfor %}

4.导入其他html文件模块
{% incloud 'test1.html' %}
5.集成base.html文件模板
{% extends "base.html" %}
6.占位模块

{% block test2content %}
	<h1> {{ username }} </h1>
{% endblock %}
相关标签: jinja2 Python