在JSP中,我曾经使用这种语法拥有一个表和一个指向记录的链接:
<td><a href="<spring:url value="/person/${person.id}"/>">${person.id}</a></td>
所以我可以点击桌面上的链接移动到某个人的详细信息页面。我想用Thymeleaf获得相同的结果,但不太确定如何。所以我的问题是:什么是Thymeleaf相当于什么?
<td th:text="${trip.hrPerson}"></td>
<td><a th:href="@{/remove/trip.id}"></a> ${trip.id} </td>
第一个示例显示静态值,没关系,第二个应该是一个链接,但它失败了。
答案 0 :(得分:1)
在Thymleaf
中,您可以按以下方式建立链接
<a th:href="@{'/person/' + $person.id}" th:text="${person.id}">My User id</a>