主题
length
统计字符串字符数、数组条目数或对象键数。
语法
knap
{{ value | length }}示例
数组长度
json
{
"tags": [
"notes",
"ideas",
"books"
]
}knap
{{ tags | length }}md
3字符串长度
json
{
"title": "Knap"
}knap
{{ title | length }}md
4对象长度
json
{
"author": {
"name": "Ada",
"role": "Writer"
}
}knap
{{ author | length }}md
2