我有一个应该将数据插入XML文件的js函数。一切都在本地服务器上运行。函数参数是从另一个函数发送的变量。
function xmlinsert(srcf, typef, textf) {
console.log("Type: "+typef);
console.log("Source: "+srcf);
console.log("Text: "+textf);
//XML Connection
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","./include/xml/gallery.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
var divi = xmlDoc.createElement("divi");
var photo = xmlDoc.createElement("photo");
var source = xmlDoc.createElement("source");
source.appendChild(xmlDoc.createTextNode(srcf));
var type = xmlDoc.createElement("type");
type.appendChild(xmlDoc.createTextNode(typef));
var text = xmlDoc.createElement("text");
text.appendChild(xmlDoc.createTextNode(textf));
var picname = xmlDoc.createElement("picnamet");
picname.appendChild(xmlDoc.createTextNode("A"));
photo.appendChild(source);
photo.appendChild(type);
photo.appendChild(text);
photo.appendChild(picname);
divi.appendChild(photo);
ix=xmlDoc.getElementsByTagName("root")[0];
ix.appendChild(divi);
}
问题是,执行该功能时没有任何反应。该文件保持不变。实际读取和显示其数据的另一个函数使用相同的文件。这功能正常。浏览器的控制台中没有显示错误。
代码中有什么问题?为什么我能读取数据,但不能写?是因为一些许可问题吗?
提前致谢!
答案 0 :(得分:1)
不幸的是,您无法使用JavaScript写入XML文件。