NodeJSを使用してXMLファイルのタグ値を変更する方法を知っている人はいますか
これは私のXMLファイルです:
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
に変更し<node>
たい<n>
WindowsでnodeJSを実行しています。これまでのところ、次のコードがあります。
var parser = new xml2js.Parser();
function xmltxt(response, postData){
fs.readFile( './foo.xml', function(err, data) {
parser.parseString(data, function (err, result) {
console.dir(result.note.to[0]);
});
});
}
これはノード値を読み取りますが、タグ値を変更する必要があります。助けてください。