admin管理员组文章数量:1344229
Using node v.0.10.29, Express v4.12.0, and xmldom v0.1.19, I'm trying to do the following:
Steps
- Read an XML file into a string
- Convert the string into an XML object using xmldom
- Set the
<name>default</name>
field to<name>test</name>
- Convert the XML object back into a string
Problem
The problem is that after I set the <name>
field, it sets correctly in the object, but when I convert it to a string, the <name>
field is back to being the old value (wrong).
Code
Here's what the code looks like for this:
var fs = require('fs');
var DOMParser = require('xmldom').DOMParser;
var XMLSerializer = require('xmldom').XMLSerializer;
var filename = "myFile.xml";
fs.readFile(filename, "utf-8", function (err,data)
{
//CREATE/PARSE XML OBJECT FROM STRING
var customerConfig = new DOMParser().parseFromString(data);
//SET VALUE TO "TEST" (<name>default</name> TO <name>test</name>)
customerConfig.getElementsByTagName("name")[0].childNodes[0].nodeValue = "test";
//THIS OUTPUTS "test" WHICH IS CORRECT -
console.log(customerConfig.getElementsByTagName("name")[0].childNodes[0].nodeValue);
//SERIALIZE TO STRING
var xmlString = new XMLSerializer().serializeToString(customerConfig);
//THIS OUTPUTS THE FULL XML FILE,
//BUT STILL SHOWS <name>default</name> AND NOT <name>test</name>
console.log(xmlString);
});
The problem is that the <name>
field isn't setting to test
in the string... I'm thinking there is a problem with the serialization part? Anyone see what I'm doing wrong?
Thank you!!
Using node v.0.10.29, Express v4.12.0, and xmldom v0.1.19, I'm trying to do the following:
Steps
- Read an XML file into a string
- Convert the string into an XML object using xmldom
- Set the
<name>default</name>
field to<name>test</name>
- Convert the XML object back into a string
Problem
The problem is that after I set the <name>
field, it sets correctly in the object, but when I convert it to a string, the <name>
field is back to being the old value (wrong).
Code
Here's what the code looks like for this:
var fs = require('fs');
var DOMParser = require('xmldom').DOMParser;
var XMLSerializer = require('xmldom').XMLSerializer;
var filename = "myFile.xml";
fs.readFile(filename, "utf-8", function (err,data)
{
//CREATE/PARSE XML OBJECT FROM STRING
var customerConfig = new DOMParser().parseFromString(data);
//SET VALUE TO "TEST" (<name>default</name> TO <name>test</name>)
customerConfig.getElementsByTagName("name")[0].childNodes[0].nodeValue = "test";
//THIS OUTPUTS "test" WHICH IS CORRECT -
console.log(customerConfig.getElementsByTagName("name")[0].childNodes[0].nodeValue);
//SERIALIZE TO STRING
var xmlString = new XMLSerializer().serializeToString(customerConfig);
//THIS OUTPUTS THE FULL XML FILE,
//BUT STILL SHOWS <name>default</name> AND NOT <name>test</name>
console.log(xmlString);
});
The problem is that the <name>
field isn't setting to test
in the string... I'm thinking there is a problem with the serialization part? Anyone see what I'm doing wrong?
Thank you!!
Share Improve this question edited Sep 29, 2015 at 22:20 Katie asked Sep 29, 2015 at 18:01 KatieKatie 48.4k19 gold badges104 silver badges129 bronze badges1 Answer
Reset to default 12Well I figured out the problem!
I was setting nodeValue
but I really needed to set data
. So I changed
customerConfig.getElementsByTagName("name")[0].childNodes[0].nodeValue = "test";
to
customerConfig.getElementsByTagName("name")[0].childNodes[0].data= "test";
then it worked!
本文标签: nodejsNodexmldom How do I change the value of a single XML field in javascriptStack Overflow
版权声明:本文标题:node.js - Node + xmldom: How do I change the value of a single XML field in javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743722529a2527815.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论