Thymeleaf和Spring MVC的Form参数为null

Thymeleaf和Spring MVC的Form参数为null,第1张

Thymeleaf和Spring MVC的Form参数为null

这是预期的行为。你有

model
response
进入您的问候,同时
view
,但只要是
http

request/response
做,它不存在了。您将把这些值保留在
<form>
标记中,并且需要在上提供这些值
form
submit

意思是,如果要发回这些值,则需要添加2个隐藏

input
s来保存这两个值。

<form action="#" th:action="@{/greeting}" th:object="${greeting}" method="post">    <p>Id: <input type="text" th:field="*{id}" /></p>    <p>Message: <input type="text" th:field="*{content}" /></p>    <input type="hidden" th:field="*{hour}" />    <input type="hidden" th:field="*{longNumber}" />    <p><input type="submit" value="Submit" /> <input type="reset" value="Reset" /></p></form>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621808.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存