<table class="layui-table"> <tr th:each="item,userStat:${map}"> <td th:text="${userStat.index}+1"></td> <td th:text="${userStat.current.key}"></td><!-- key--> <td th:text="${userStat.current.value}"></td><!-- value--> </tr> </table>
thymeleaf 给表格加a标签超链接
<td ><a th:href="@{'/news/detail?id=' + ${news.id}}" target="_blank" th:text="${news.title}"></a></td>