我正在使用这个 API,它将源自 LHR 的航班状态返回给 MAN(只是一个示例)。响应格式为 XML,但我无法使用 JavaScript 读取它。
我尝试了以下方法:
function loadXMLDoc(dname) { //the dname here is the url
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else {
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET", dname, false);
xhttp.send();
return xhttp.responseXML;
}
但它不起作用。是否有另一种方法来读取 API 的 XML 响应?