gpt4 book ai didi

java - Thymeleaf - 表中可点击的 URL(Web 链接)

转载 作者:行者123 更新时间:2023-12-02 10:30:33 32 4
gpt4 key购买 nike

(我在谷歌上查看过,但没能找到可以帮助我的答案)。

目标:网站作为可点击的网络链接输入- 链接以 varchar(100) 形式从数据库检索

尝试了各种不同的解决方案..没有任何运气 - 也许你们中的一个人可以帮助我? :)。预先感谢您。

 <table class="table table-striped table-bordered table-hover">

<thead>

<tr>
<th>Id</th>
<th>Name</th>
<th>Address</th>
<th>City</th>
<th>Zip</th>
<th>Website</th>
<th>Email</th>
<th>Phone</th>
<th>Location</th>
<th>Agelimit</th>
</tr>
</thead>
<tbody>
<tr th:each="sps: ${sp}">
<td th:text="${sps.venueId}"/>
<td th:text="${sps.name}"/>
<td th:text="${sps.address}"/>
<td th:text="${sps.city}"/>
<td th:text="${sps.zip}"/>
<td th:text="${sps.website}"/>
<td th:text="${sps.email}"/>
<td th:text="${sps.phone}"/>
<td th:text="${sps.location}"/>
<td th:text="${sps.ageLimit}"/>


</tr>
</tbody>
</table>

最佳答案

您可以在 Thymeleaf 中使用任何类型的标签。这是你想要的吗?

<td>
<a th:href="${sps.website}" th:text="${sps.website}" target="_blank" />
</td>

关于java - Thymeleaf - 表中可点击的 URL(Web 链接),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53635609/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com