freemarker之数组
1、设计思路
(1)声明一个数组
(2)打印数组中的元素
2、设计源码
<#--freemarker数组--> <#assign nums=[12,34,56,78,90,54,23,94,102]/> <#list nums as num> ${num} </#list>
12 34 56 78 90 54 23 94 102