-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprocess_if.py
41 lines (33 loc) · 1.65 KB
/
process_if.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
# encoding: utf-8
# @author: hoojo
# @email: hoojo_@126.com
# @github: https://github.com/hooj0
# @create date: 2018-09-10
# @copyright by hoojo @2018
# @changelog process struct statement if
# ===============================================================================
# 标题:process struct statement if
# ===============================================================================
# 使用:if 进行逻辑运算判断
# -------------------------------------------------------------------------------
# 描述:通过判断进入不同的业务逻辑结构
# -------------------------------------------------------------------------------
# -------------------------------------------------------------------------------
# 判断语句
# -------------------------------------------------------------------------------
from jinja2 import Environment, select_autoescape, FileSystemLoader
# 从指定位置加载模板的环境
loader = FileSystemLoader('.')
# 更多配置参考:http://jinja.pocoo.org/docs/2.10/api/#high-level-api
env = Environment(loader=loader,
autoescape=select_autoescape(['html', 'xml']),
line_statement_prefix="#",
line_comment_prefix="##",
trim_blocks=True, keep_trailing_newline=True, lstrip_blocks=True)
# 获取模板
template = env.get_template('if-template.html')
# 渲染模板
result = template.render(users = [{ "username": "jack" }, { "username": "老张", "hidden": True }, { "username": "tom 'kid <jim> ", "hidden": False }],
kenny = { "dead": "yes" })
print(result)