我正在尝试使用对象数组列表填充模板中的表
List<Object[]> list
此列表的每个对象数组都有固定的长度,并且对所有对象数组都相同。
我需要这样的东西
<table>
<tr th:each="obArr:${list}">
<td th:text="${obArr[0]}"></td>
<td th:text="${obArr[1]}"></td>
<td th:text="${obArr[2]}"></td>
</tr>
</table>
这是否可以使用百里香,或者我应该尝试不同的方法?
答案 0 :(得分:0)
是的,这是可能的。
您可以在此处找到一些有用的示例: http://www.thymeleaf.org/doc/tutorials/3.0/thymeleafspring.html#listing-seed-starter-data