Thymeleaf傳遞url參數


使用Thymeleaf傳遞url參數

路徑變量

<a href="#" th:href="@{/admin/{id}/delete(id=${comment.id})}" >刪除</a>

{xx} 設置參數名,末尾加(xx=) 即可設置路徑變量

url單參數

<a th:href="@{/admin(page=${page.number}-1 )}" class=" item">查找</a>

末尾直接添加name value對,用括號包裹

url多個參數

<a th:href="@{/admin(page=${page.number}-1,size=10)}" class=" item">查找</a>

多個參數用逗號分隔


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM