我想从响应标题中检索响应代码,

var xhrArgs = {
    url: "/cgi-bin/cgi.py",
    postData: {
    },
    handleAs: "json",
    load: function (data, ioargs) {
        console.log(ioargs.xhr.getAllResponseHeaders());
    },
    error: function (error) {}
};
dojo.xhrPost(xhrArgs);


console.log(ioargs.xhr.getAllResponseHeaders()); //我如何在这里获取响应代码?我应该解析字符串还是有其他处理方式?

最佳答案

您可以只使用status

load: function (data, ioargs) {
     console.log("XHR returned HTTP status: " + ioargs.xhr.status);
}


这是good example

09-20 21:06