_index获取下标
如果需要显示当前循环到第几项,可以这样写
<#list ["hello","world"] as word>
<span>${word_index+1},${hi}</span></br>
< /#list>
as 后面的那个变量,加上_index,就可以表示当前循环到第几项
结果是:
1,hello...
阅读全文