窗口卸载后我的ajax请求会发生什么
当页面卸载但请求仍在途中时,我的 syn/asyn XMLHttpRequest (IE) 会发生什么情况?
绑定到 $(window).unload 并为我的请求对象调用 .abort() 方法是否有意义?
问题是,在某些情况下,页面加载和卸载速度非常快,而在某些情况下,旧版 IE 6 会冻结至少 3 分钟。
丹尼尔
what happens to my syn/asyn XMLHttpRequest (IE) when the page unload but the request is still on his way?
Is it meaningful to bind to the $(window).unload and call the .abort() method for my request object?
The problem is that in some cases the page loads and unloads very fast and in some cases the good old IE 6 freezes for at least 3 min.
Daniel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IE 中有一个已知错误,当您离开页面时,未正确清理正在进行的 XHR 请求。解决方法是设置一个“卸载”事件处理程序来中止任何正在进行的请求。
一些相关评论:
There is a known bug in IE where inflight XHR requests are not properly cleaned up when you leave a page. The workaround is to set up an 'unload' event handler that aborts any in-progress requests.
Some related commentary:
我不知道其他浏览器的情况,但在 IE 中你不能在 window.unload 中创建异步 $.post 。
在 $.ajax()/$.post 中将 async 参数设置为 false 即可工作。
I don't know for other browsers but in IE you can't make async $.post in window.unload.
Set async param to false in the $.ajax()/$.post and it will work.