2017-03-13 79 views

回答

4

在這種特殊情況下,沒有區別。

<a th:href="@{http://www.thymeleaf/documentation.html}"> 

會產生完全相同

<a href="http://www.thymeleaf/documentation.html"> 

這只是那裏,因爲這些部分都列出了不同類型的URL與(絕對,相對而言,服務器相對的,相對協議)的表達式工作的URL。這就是說,有可能使用它的原因是......例如在絕對URL中包含一個ID。例如:

<th:block th:with="id=${42774564}"> 
    <a th:href="@{https://stackoverflow.com/questions/{id}(id=${id})}">Stack Overflow</a> 
</th:block> 
相關問題