thymeleaf中使用Restful风格的两种传参形式

方式1:

th:href="@{/query/{id}(id=${c.getId()})}"

方式2:多个参数字符串拼接

th:href="@{'/delete/'+${a.getId()}+'/'+${c.Id()}}"
th:src="@{'src链接'+${model中的传递值}}"