带注释的 Spring IsFormSubmission
如何使用Spring注解处理isFormSubmission
,是否有任何注解可以阻止重复提交?
How to handle isFormSubmission
with Spring annotations, is there any annotation available to block duplicate submission?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有。而且您无法使用
isFormSubmission()
检测到它 - 它只会告诉您请求是否使用POST
。您可以使用客户端代码禁用重复提交(按下提交按钮时禁用)
No, there isn't. And you can't detect it with
isFormSubmission()
- it will tell you only of the request is usingPOST
or not.You can use client-side code to disable duplicate submission (disable the submit button when it's pressed)