为什么当我右键单击页面然后单击“另存为...”时 XMLHttpRequest 会中止在 Chrome 中?

发布于 2024-12-29 00:39:49 字数 158 浏览 1 评论 0原文

这是用于测试的jsfiddle: http://jsfiddle.net/2LXrU/ 右键单击结果面板,然后单击“另存为...”,您将看到结果。

任何人都知道有什么问题吗?

Here is the jsfiddle for test: http://jsfiddle.net/2LXrU/
Right click on the result panel and click on 'Save As...', you will see the result.

Anyone has idea what's the issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟酉 2025-01-05 00:39:49

看起来,在 setTimeout 中发出新请求将阻止 XHR 被取消。我在这里编写了一个测试,您可以尝试一下:

http://broofa.com/tests/SlowXHR。 htm

这里是 SendXHR.php (fwiw):

<?
sleep(2);
echo ", World";

在未选中该框的情况下,单击“另存为”将停止请求周期。
选中该框后,“另存为”不会中断请求。

It appears that issuing the new request in a setTimeout will prevent the XHR from being cancelled. I coded up a test here where you can try it out:

http://broofa.com/tests/SlowXHR.htm

Here's SendXHR.php (fwiw):

<?
sleep(2);
echo ", World";

With box unchecked, clicking "save as" stops the request cycle.
With box checked, "save as" doesn't interrupt the requests.

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