我正在编写一个打包的Chrome Web 应用程序并尝试解析外部 XML。当我将 XML 文件下载到我的服务器时它可以工作,但当我将 XML 文件更改为 Web 上的位置时它不起作用。
例如,我正在尝试访问此文件: http ://www.w3schools.com/xml/note.xml
这是我的 JavaScript 代码(注意 HTML ):
function dashboardContent() {
html="";
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","http://www.w3schools.com/xml/note.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
html+=xmlDoc.getElementsByTagName("to")[0].childNodes[0].nodeValue;
html+=xmlDoc.getElementsByTagName("from")[0].childNodes[0].nodeValue;
html+=xmlDoc.getElementsByTagName("body")[0].childNodes[0].nodeValue;
document.getElementById("contentArea").innerHTML=html;
}
在我的 Chrome Web App manifest.json 文件中,我根据 Google对 Cross-origin XMLHttpRequests 的清单要求将以下内容置于权限之下:
{
"name": "BirdTrax",
"version": "0.1.1",
"description": "Birding explorer to help you plan birding trips and find recently eBirded sightings, rarities, and checklists in your area",
"icons": {
"16": "icons/helloWorld_16.png",
"128": "icons/helloWorld_128.png"
},
"app": {
"launch": {
"local_path": "main.html",
"container": "tab"
}
},
"background_page": "background.html",
"options_page": "options.html",
"permissions": [
"http://www.w3schools.com/*",
"notifications",
"unlimitedStorage"
],
"incognito": "split"
}
我不确定我是否仍然缺少某些东西,但代码对我不起作用。有什么建议、提示、想法吗?我真的很感激任何帮助!