窗口卸载后我的ajax请求会发生什么

发布于 2024-08-19 11:02:11 字数 191 浏览 4 评论 0原文

当页面卸载但请求仍在途中时,我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

失而复得 2024-08-26 11:02:11

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:

北方的韩爷 2024-08-26 11:02:11

我不知道其他浏览器的情况,但在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文