Reuse XMLHttpRequest object or create a new one?(重用 XMLHttpRequest 对象还是创建一个新对象?)
问题描述
我搜索了stackoverflow,但得到了矛盾的答案:
I searched stackoverflow but got contradictory answers:
为什么要重用 XmlHttpRequest 对象?
Ajax 密集型page:重复使用相同的 XMLHttpRequest 对象还是每次都创建一个新对象?
另外,w3schools.com 上也有推荐:
Also, there's a recommendation on w3schools.com :
如果您的网站上有多个 AJAX 任务,您应该创建一种用于创建 XMLHttpRequest 对象的标准函数,并调用这适用于每个 AJAX 任务.
If you have more than one AJAX task on your website, you should create ONE standard function for creating the XMLHttpRequest object, and call this for each AJAX task.
为什么推荐这个?我在我的页面上使用全局 XMLHttpRequest 对象来处理所有 Ajax 任务.
Why this recommendation? I'm instead using a global XMLHttpRequest object on my page for handling all Ajax tasks.
推荐答案
你误解了 W3School 的建议.我将突出显示相关部分:
You misunderstood W3School's recommendation. I'll highlight the relevant part:
如果您的网站上有多个 AJAX 任务,您应该创建一个标准函数来创建 XMLHttpRequest 对象,并为每个 AJAX 任务调用它.
If you have more than one AJAX task on your website, you should create ONE standard function for creating the XMLHttpRequest object, and call this for each AJAX task.
它说您使用一个 AJAX 函数来获取请求.这个函数会处理IE和其他浏览器的不一致.XMLHttpRequest
在符合标准的浏览器中,ActiveXObject
在 IE 中.
It says that you use one AJAX function to fetch requests. This function will deal with the inconsistencies between IE and other browsers. XMLHttpRequest
in standard-compliant browsers, and ActiveXObject
in IE.
我建议使用多个 XHR 对象.使用一个全局 xhr 对象,您的应用程序在给定时间只能处理一个请求.它也容易出错(例如,XMLHttpRequest 启动多次而不启动 onreadystatechange 函数).
I recommend to use multiple XHR objects. With one global xhr object, your application can only deal with one request at a given time. It's also error-prone (eg. XMLHttpRequest launches multiple times without initiating the onreadystatechange function).
W3schools 的意思是:
W3schools meant something like:
function createXHR() {
try {
return new XMLHttpRequest();
} catch (e) {
try {
return new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
return new ActiveXObject("Msxml2.XMLHTTP");
}
}
}
var xhr = createXHR();
xhr.open('get', '/test', true);
xhr.send();
虽然最好创建一个处理请求的函数,例如 jQuery.ajax代码>.
Although it's better to create a function which handles requests, such as jQuery.ajax
.
这篇关于重用 XMLHttpRequest 对象还是创建一个新对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:重用 XMLHttpRequest 对象还是创建一个新对象?
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01