补充文档

This commit is contained in:
2betop 2020-04-24 10:00:25 +08:00
parent c9c9be1013
commit ae9a7bef7c
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ tpl 类型的渲染器支持用 JS 模板引擎来组织输出,采用的 lodas
从上面的语法可以看出来,取值时是支持指定 filter 的,那么有哪些 filter 呢?
- `html` 转义 html 如:`${xxx|html}`。
- `json` json stringify。
- `json` json stringify。将目标变量转成 json 字符串。
- `toJson` 反过来处理,如果目标字段是字符串,尝试把它解析成 js 数据。
- `raw` 表示不转换, 原样输出。
- `date` 做日期转换如: `${xxx | date:YYYY-MM-DD}`
- `number` 自动给数字加千分位。`${xxx | number}` `9999` => `9,999`