Thymeleaf URI模板JSP等效

时间:2016-11-10 15:40:59

标签: spring jsp thymeleaf

在JSP中,我曾经使用这种语法拥有一个表和一个指向记录的链接:

<td><a href="<spring:url value="/person/${person.id}"/>">${person.id}</a></td>

所以我可以点击桌面上的链接移动到某个人的详细信息页面。我想用Thymeleaf获得相同的结果,但不太确定如何。所以我的问题是:什么是Thymeleaf相当于什么? enter image description here

<td th:text="${trip.hrPerson}"></td>

<td><a th:href="@{/remove/trip.id}"></a>  ${trip.id}  </td>

第一个示例显示静态值,没关系,第二个应该是一个链接,但它失败了。

1 个答案:

答案 0 :(得分:1)

Thymleaf中,您可以按以下方式建立链接

<a th:href="@{'/person/' + $person.id}" th:text="${person.id}">My User id</a>