很多时候我们在使用异步javascript时都会遇到问题.我们不确定发布了什么请求以及获得了什么响应.
如何调试AJAX请求.有一个简单的方法可以做到这一点.
解决方法:
我很确定,如果您为每个调用实例化一个新对象,则可以跟踪每个请求:
var oXhr;
oXhr = new XMLHttpRequest();
oXhr.id = (new Date()).getTime(); /* just an example. It might be flawed if you process requests more than once per ms */
oXhr.onreadystatechange = function() {
if (oXhr.readyState == 4 && (oXhr.status == 200)) {
//do your stuff here
console.log(this.id);
}
}