如何使用百里香添加超链接到Spring Data对象

时间:2019-03-20 18:48:37

标签: html spring thymeleaf

我有这样的东西:

<td th:text="${e.name}">My Event</td>

我需要在e.name上添加超链接,但我不知道该怎么做,而且我认为我的Google技能也可能会欠缺,因为我找不到如何做的事情。

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

就像在普通的HTML文档中一样,您需要在要链接的内容周围包装anchor元素。例如这样的

<a th:href="@{http://www.thymeleaf/documentation.html}"><td th:text="${e.name}">My Event</td></a>

阅读Thymeleaf Standard URL Syntax

可找到其他变体

答案 1 :(得分:0)

它应该像这样:

<td><a href="http://your.url.here" th:text="${e.name}">My Event</a></td>

您可以在任何html标记上使用th:属性。