通过验证防止 MVC 3 中的多个表单提交
我有一个带有许多输入字段的表单,其中一些带有验证。我使用MVC 3中的默认验证插件。如果服务器响应缓慢,用户可能会再次点击提交,这可能会导致不良行为。如何防止这种情况发生?我尝试在表单的 .submit 事件中注入代码,但即使验证失败也会引发此事件。
I have a form with many input fields on it, some with validation. I use the default validation plugin in MVC 3. If the server response is slow, the user may click to submit another time, which may cause undesired behavior. How to prevent this? I've tried injecting code in the .submit event of the form, but this event is raised even if the validation fails.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查验证是否成功并禁用提交按钮:
You could check whether validation succeeded and disable the submit button: