我正在做一个原型,它将从 Web 资源位置获取各种 XML,然后将它们显示在 DOM 上。
这是功能
function readXML()
{
$.ajax({
type: "GET",
url: "https://collaboratewiki.com/wikiattachments/61736956/engineer.xml",
dataType: "xml",
success: function(xml)
{
window.alert("success")
},
error: function(xhr,err)
{
alert("readyState: "+err.readyState+"\nstatus: "+err.status);
alert("responseText: "+err.responseText);
}
});
}
当我调用此函数时,它会出现错误情况,但我在消息输出中得到“未定义”。
我需要找出为什么我无法获取我的 XML,但是这个输出根本没有帮助。
如何获取 AJAX 调用发生的错误的所有详细信息?
我试过代替 "err.responseText" , "xhr.responseText" 但我仍然得到未定义的。
谢谢