freemarker遍历数组对象
时间: 2024-01-27 13:04:45 浏览: 101
以下是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
```
相关问题
freemarker遍历对象数组
以下是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
```
阅读全文