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

时间:2018-12-05 15:27:39

标签: java html html5 spring-boot thymeleaf

(我已经在google上找到了Google,但是还没有找到可以帮助我的答案)。

目标:将网站输入为可点击的网络链接 -从数据库检索链接为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>

1 个答案:

答案 0 :(得分:0)

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

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