我有一个jsp页面,我正在尝试一次发送多个(当前两个)ajax请求,但我似乎只得到第二个响应。 This家伙完全描述了我的问题,但他的解决方案对我不起作用。
这是我的js代码:
function createRequestObject(){
var req;
if(window.XMLHttpRequest){
//For Firefox, Safari, Opera
req = new XMLHttpRequest();
} else if(window.ActiveXObject){
req = new ActiveXObject("Microsoft.XMLHTTP");
}
else{
//Error for an old browser
alert('Browser error');
}
return req;
}
function sendRequest(method, url, d){
var http = createRequestObject();
var div = d;
if(method == 'get' || method == 'GET'){
http.open(method, url, true);
http.onreadystatechange = function() {
if(http.readyState == 4 && http.status == 200){
var response = http.responseText;
if(response){
document.getElementById(div).innerHTML = response;
}
}
};
http.send(null);
}
}
以下是我称之为代码的方式:
QC1 Status: <div id='qc1'>blah</div>
<br />UAT2 Status: <div id='uat2'>blah2</div>
<a onclick="sendRequest('GET','index.jsp?qc1.properties=true','qc1'); " href="#">qc1</a>
<a onclick="sendRequest('GET','index.jsp?uat2.properties=true','uat2'); " href="#">uat2</a>
<a onclick="sendRequest('GET','index.jsp?qc1.properties=true','qc1'); sendRequest('GET','index.jsp?uat2.properties=true','uat2'); " href="#">both</a>
当我一次调用一个时,它们按预期工作,但“both”链接仅用第二个请求更新,即使我知道它运行了两个的index.jsp代码。
编辑:好的,在解决了BalusC指出的明显错误之后,它确实有效。修正了这篇文章。
答案 0 :(得分:2)
您确实在相同的网址上发送了两个请求,并更新了相同的div 。第一个不应该转到qc1
并更新qc1
吗?