Spring或thymeleaf没有将id参数传递给请求?

时间:2017-02-17 19:20:29

标签: spring request thymeleaf http-get

所以有以下形式:

<form method="get" th:action="@{/aliments/edit(id=${aliment.id})}">
    <input th:type="submit" value="Edit"/>                       
</form>

在浏览器中生成以下html:

<form method="get" action="/aliments/edit?id=1">
    <input value="Edit" type="submit">                       
</form>

问题在于,当提交表单时(通过点击&#39;编辑&b; btn),会发出以下请求(http://localhost:8080/aliments/edit?而不是http://localhost:8080/aliments/edit?id=1):

enter image description here

那么为什么id参数没有传递给请求?

0 个答案:

没有答案