freemark的list遍历内置函数详解
基于freemarker 2.3.28##1. index 返回列表的索引从0开始template:<#list ['a', 'b', 'c'] as x> ## 写成x_index也可以 ${x?index}</#list>output:0122. counter 计数器 索引从1开始template:&am