freemarker遍历对象数组
时间: 2023-11-21 13:57:08 浏览: 131
Freemarker中遍历list集合实例
5星 · 资源好评率100%
以下是freemarker遍历对象数组的例子:
```html
<#assign listArray = [["obj11", "obj12"], ["obj21", "obj22"], ["obj31", "obj32"]]> <!-- 定义数组 -->
<#list listArray as obj> <!-- 遍历数组 -->
<p>${obj[0]} - ${obj[1]}</p> <!-- 输出数组元素 -->
</#list>
```
输出结果为:
```
obj11 - obj12
obj21 - obj22
obj31 - obj32
```
阅读全文