我有一个名为" movies.xml"的xml文件。我需要从中删除第一部电影,所以我创建了" delete.jsp"文件包含所需的代码。
两个文件都存在于Netbeans制作的Java web项目文件夹中,我使用Apache Tomcat服务器进行localhost
movies.xml
<?xml version="1.0" encoding="UTF-8"?>
<movies>
<movie>
<Title>Journey to the Edge of the Universe</Title>
<Date>7 December 2008</Date>
<Publisher>National Geographic</Publisher>
<Description>
A journey through space and time.
</Description>
</movie>
<movie>
<Title>Sea Monsters: A Prehistoric Adventure</Title>
<Date>5 October 2007</Date>
<Publisher>National Geographic</Publisher>
<Description>
A journey to the bottom of the ancient oceans dramatizes awe-inspiring creatures.
</Description>
</movie>
</movies>
delete.jsp
<script>
function loadXMLDoc() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
deleteMovie(this);
}
};
xmlhttp.open("GET", "movies.xml", true);
xmlhttp.send();
}
function deleteMovie(xml) {
var xmlDoc = xml.responseXML;
x = xmlDoc.getElementsByTagName("movie")[0];
x.parentNode.removeChild(x);
}
</script>
代码工作正常,但是当我打开xml文件时,我看不到任何更改。
删除/插入或没有任何其他语言的修改后保存或更新xml文件的最佳方法是什么?
答案 0 :(得分:0)
删除
删除元素节点
假设“movie.xml”已加载xmlDoc 将变量x设置为要删除的元素节点 使用父节点中的removeChild()方法删除元素节点
x = xmlDoc.getElementsByTagName("movie")[0];
x.documentElement.removeChild(x);
删除我自己 - 删除更改文本节点的当前值
x = xmlDoc.getElementsByTagName("movie")[0];
x[0].parentNodechildNodes[0].removeChild(x);nodeValue = "new content"
删除文本NodeChange属性使用setAttribute()
x = xmlDoc.getElementsByTagName("movie")[0];
y = x.childNodes[0];
x[0].removeChildsetAttribute(y"category","name");
清除文本节点使用nodeValue更改属性
xmlDoc.getElementsByTagName("movie")[0].childNodes[0]getAttributeNode("category").nodeValue = "";"name";
参考:W3学校
<强>更新强>
更改文字节点的值
xmlDoc.getElementsByTagName("movie")[0].childNodes[0].nodeValue = "new content"
使用setAttribute()
更改属性xmlDoc.getElementsByTagName("movie")[0].setAttribute("category","name");
使用nodeValue更改属性
xmlDoc.getElementsByTagName("movie")[0].getAttributeNode("category").nodeValue = "name";
自己动手»
Obs。:nodeValue属性是属性节点的值。更改value属性会更改属性的值。
您的问题是: javaScript没有输入/输出(I / O)API,因为它是客户端脚本语言,因此无法通过服务器访问文件系统。您需要使用服务器端脚本语言将数据保存到服务器。客户端可能存在解决问题的黑客攻击,但它们可能是无法解决的,也可能是其他问题。 (顺便说一下:什么api是保存方法的成员?你做到了吗?)
您可以做的是将数据临时保存到任何DOM元素(例如窗口或javaScript)对象。但是,无法永久地进行这些更改。
在您的情况下,查看PHP或Node js脚本可能是最好的方法。 但这里的代码是有效的。 参考:here