0

我已经创建了 XHR,并且我也正确地从服务器获得了响应。但由于某种原因,回调没有发生。请帮忙。

function uploadDr(){
    var url = "UploadExcelServlet";     
    if (req != null) {
        try {
            req.open("GET", url, true);
        } catch (e) {
            alert(e);
        }
        req.onreadystatechange = callBk;
        req.setRequestHeader("Content-Type", "multipart/form-data");
        req.send();
    } else {
        alert("Null Request");
    }
}


function callBk(){
    if (req.readyState == 4){
        if (req.status == 200){
            alert(req.responseXml);
        } else {
            alert(req.statusText);
        }
    }
}
4

1 回答 1

0

对于 GET 请求,您不需要设置“Content-Type”标头,因为数据始终在 URL 中传递。

也许您需要设置请求数据以发送如下:

req.send(null);

然后readyState在回调函数中测试:

function callBk(){
    console.log(req.readyState); // don't stop the script by using alert!
    // other stuff
}

使readyState不等于0( XMLHttpRequest.UNSENT) 的舒尔。

于 2012-12-08T08:39:17.560 回答