检测提交表单的 HTTP 204 状态
有没有办法获得 JavaScript 事件或检查提交的表单是否获得响应状态 HTTP 204?
Is there a way to have a JavaScript event or check see if a submitted form got as response status HTTP 204?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短回答:如果是常规
如果您使用 XHR,则只能检测响应代码。
Short answer: If it's a regular
<form>
submit, no.You can only detect the response code if you use XHR.
如果不是 Ajax 表单提交,则不可能。在这种情况下,需要在服务器上处理逻辑并重定向到适当的页面。
Not possible if not Ajax form submit. In this case logic needs to be handeled on the server and redirect to appropriate page.