我正在学习如何执行 XHR,并将来自 w3school 的代码放在我的网络服务器(tomcat7)中进行尝试。当我将“note.xml”与 html 放在同一个文件中时,我可以使用下面的代码来获取 XML 文件。
xmlhttp.open("GET","note.xml",true);
但是,如果我将“note.xml”移动到另一个 webapp 位置,我就不能使用相同的方法。下面的代码也无法获取 XML 文件。
xmlhttp.open("GET","http://localhost:8080/anotherWEBapp/note.xml",true);
HTML:
<html>
<body>
<h1>W3Schools Internal Note</h1>
<div>
<b>To:</b> <span id="to"></span><br />
<b>From:</b> <span id="from"></span><br />
<b>Message:</b> <span id="message"></span>
</div>
<script>
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","http://localhost:8080/test-app/note.xml",true);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
document.getElementById("to").innerHTML=
xmlDoc.getElementsByTagName("to")[0].childNodes[0].nodeValue;
document.getElementById("from").innerHTML=
xmlDoc.getElementsByTagName("from")[0].childNodes[0].nodeValue;
document.getElementById("message").innerHTML=
xmlDoc.getElementsByTagName("body")[0].childNodes[0].nodeValue;
</script>
</body>
</html>
无论如何我只能使用 javascript 来获取 XML 文件吗?