我有这个代码来发出ajax请求,但根据Chrome Inspector,与请求相关联的回调被调用两次(我的意思是响应被记录到控制台两次),还有2个日志被打印没有任何内容。这是代码:
var ajax = {
pull: function (settings) {
settings.type = 'get';
settings.callback = typeof (settings.callback) === 'function' ? settings.callback : false;
settings.data = settings.data ? settings.data : null;
return this.request(settings.url, settings.type, settings.callback, settings.data);
},
request: function (url, type, callback, data) {
var ids = ['MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP',
'Microsoft.XMLHTTP'],
xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
for (var i = 0; i < ids.length; i++) {
try {
xhr = new ActiveXObject(ids[i]);
break;
} catch (e) {}
}
}
if (callback) {
xhr.onreadystatechange = function () {
callback(xhr);
};
}
xhr.open(type, url, true);
if (type.toUpperCase() === 'GET') {
xhr.send();
} else if (type.toUpperCase() === 'POST') {
xhr.send(data);
}
}
}
ajax.pull({
url: 'http://localhost/my/twtools/scripts/ajax.php',
callback: function (xhr) {
console.log(xhr.response);
}
});
答案 0 :(得分:3)
if (xhr.readyState == 4 && xhr.status == 200)
{
// call has finished successfully
}
在你内部回调,即检查它是否全部完成并获得成功的回复
这些天我被jQuery宠坏了(使用jQuery更容易),自从我写了原始ajax以来已经有一段时间了
答案 1 :(得分:2)
你正在使用onreadystatechange
,它会被多次调用(每次状态更改一次)。
尝试使用
xhr.onload = function() {
callback(xhr);
};