相关帖子
-
等 3.1.16 之后可以用这个:
.action{ if index . "custom-avs" } 字符数:.action{ (statBlock .id).RuneCount} 字数:.action{ (statBlock .id).WordCount} .action{ end }
1 回复 - 其他回帖
-
可以用这个先顶一顶
.action{ $total := 0 } .action{$id := .id} .action{ $blocks := queryBlocks "select * from blocks where root_id = '?' and id != '?'" $id $id } .action{ range $v := $blocks } .action{ $len := len $v.Content } .action{ $total = add $total $len } .action{ end } .action{ $total }
注意,全局变量要用
.action{ $total = }
而不能用.action{ $total := }
-
- 查看全部回帖