[solved] id pass in href in thymeleaf
- Jewel Chowdhury
- Guides
- Nov 02, 2021
Solution:
The right way according to Thymeleaf documention for adding parameters is:
<a th:href=”@{/category/edit/{id}(id=${category.idCategory})}”>view</a>
Hope it helps
Solution:
The right way according to Thymeleaf documention for adding parameters is:
<a th:href=”@{/category/edit/{id}(id=${category.idCategory})}”>view</a>
Hope it helps