如果我还需要一个 id 参数,如何向这个 thymeleaf link 添加参数?

How to add parameter to this thymeleaf link, if I need to have an id parameter also?

我需要 id 和这个参数 sortField=${sortField}。如何做到这一点?

 th:href="@{/admin/orders/decline/{id}(id=${order.id})}"

您可以将其添加为额外参数(不带占位符)。

th:href="@{/admin/orders/decline/{id}(id=${order.id},sortField=${sortField})}"

见最后一个例子here