Jinja2模版语言,自带有一些filter,能够在前端的模版中控制数据按照相应的方式显示.比如以下两种filter,分别能在前端控制数字的近似精度显示和根据字符串长度补齐: round(value, precision=0, method='common') {{ 42.55|round }} -> 43.0 {{ 42.55|round(1, 'floor') }} -> 42.5 truncate(s, length=255, killwords=False, end='...') {{…