now 函数:获取当前时间
版本 2.8 中的新功能。
now()
Jinja2 函数检索 Python datetime 对象或当前时间的字符串表示形式。
now()
函数支持两个参数
- utc
指定
True
以获取 UTC 中的当前时间。默认为False
。- fmt
接受一个 strftime 字符串,该字符串返回格式化的日期时间字符串。
例如:dtg: "Current time (UTC): {{ now(utc=true,fmt='%Y-%m-%d %H:%M:%S') }}"