thymeleaf获取列表
时间: 2024-01-27 14:04:09 浏览: 75
Thymeleaf资料
在Thymeleaf中获取列表可以使用th:each指令,示例如下:
```
<table>
<tr th:each="item : ${items}">
<td th:text="${item.name}"></td>
<td th:text="${item.price}"></td>
</tr>
</table>
```
其中,${items}是在Controller中传入Model中的列表数据,item是循环变量,可以通过item.name和item.price获取列表中的每个元素的属性值。
阅读全文