Thymeleaf 使用路径变量来表示 th:href
2022-08-31 21:06:49
这是我的代码,我正在迭代:
<tr th:each="category : ${categories}">
<td th:text="${category.idCategory}"></td>
<td th:text="${category.name}"></td>
<td>
<a th:href="@{'/category/edit/' + ${category.id}}">view</a>
</td>
</tr>
它指向的 URL 应该是 ,但它说它无法解析表达式:/category/edit/<id of the category>
计算 SpringEL 表达式的异常:“category.id”(类别列表:21)