浏览器的 AJAX (XmlHttpRequest) 超时长度

AJAX (XmlHttpRequest) timeout length by browser(浏览器的 AJAX (XmlHttpRequest) 超时长度)
本文介绍了浏览器的 AJAX (XmlHttpRequest) 超时长度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在网上搜索,试图找到一个直接的答案.有谁知道浏览器 ajax 请求的默认超时长度?如果它改变了,也按版本?

I've been scouring the web trying to find a straight answer to this. Does anyone know the default timeout lengths for ajax request by browser? Also by version if it's changed?

推荐答案

我认为浏览器没有AJAX超时,只有同步或异步请求;同步 - 首先冻结 JavaScript 执行,直到请求返回,异步 - 不冻结 JavaScript 执行,它只是将请求从执行流程中取出,如果您有回调函数,它将与正在运行的脚本并行执行该函数(类似于线程)

I don't think browsers have a timeout for AJAX, there is only synchronous or asynchronous requests; synchronous - first freezes the JavaScript execution until the request returns, asynchronous - does not freeze JavaScript execution, it simply takes the request out of the execution flow, and if you have a callback function it will execute the the function in parallel with the running scripts (similar to a thread)

**sync flow:**

running JS script
     |
    ajax
(wait for response)
     |
execute callback 
     |
running JS script




 **async flow:**

 running JS script
     |
    ajax  --------------------
     |                       |
 running JS script       execute callback

这篇关于浏览器的 AJAX (XmlHttpRequest) 超时长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Laravel 5.3 with Vuejs ajax call尝试使用 Vuejs 从数据库中获取一些数据。我的用户表中有一些虚拟数据。我想在我的视野中展示它们。问题是虽然页面加载,但...
Passing Data between react components(在Reaction组件之间传递数据)
How can I get the nearest date through moment.js?(怎样才能通过Moment.js获得最近的日期呢?)
Difference between two time using dayjs(使用DAYJS的两次时间之间的差异)
Tempus Dominus Bootstrap4 requires moment.js. (datetime picker)(Tempus Domus Bootstrap4需要minom.js。(日期时间选取器))
React/Momentjs date formatting with line break(带换行符的Reaction/Momentjs日期格式)