我在项目文件夹中有一个XML文件,需要将XML数据作为查询参数来传递,以打开新页面。
我已成功从文件夹中读取XML文件,但无法将数据作为查询参数发送。我尝试了以下方式,但是变得像
http://localhost:8080/newpage?param=[object%20XMLDocument]
function readXML() {
var xhr = new XMLHttpRequest();
xhr.open('GET', 'xml/sample.xml', true);
xhr.onload = function () {
// Request finished. Do processing here.
var xmlDoc = this.responseXML;
location.href = "http://localhost:8080/newpage?param="+ xmlDoc;
};
xhr.send(null);
}