为什么当我右键单击页面然后单击“另存为...”时 XMLHttpRequest 会中止在 Chrome 中?
这是用于测试的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来,在 setTimeout 中发出新请求将阻止 XHR 被取消。我在这里编写了一个测试,您可以尝试一下:
http://broofa.com/tests/SlowXHR。 htm
这里是 SendXHR.php (fwiw):
在未选中该框的情况下,单击“另存为”将停止请求周期。
选中该框后,“另存为”不会中断请求。
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):
With box unchecked, clicking "save as" stops the request cycle.
With box checked, "save as" doesn't interrupt the requests.