如何在Thymeleaf中循环浏览地图
我试图了解如何遍历Thymeleaf中Map中的所有条目。我有一个Thymeleaf正在处理的包含Map的域对象。
如何遍历键并获取值?
谢谢。
回答:
没关系…我找到了…
<tr th:each="instance : ${analysis.instanceMap}"> <td th:text="${instance.key}">keyvalue</td>
<td th:text="${instance.value.numOfData}">num</td>
</tr>
谢谢。
以上是 如何在Thymeleaf中循环浏览地图 的全部内容, 来源链接: utcz.com/qa/406730.html