0

我正在尝试将新的子节点添加到 xml 文件中;到目前为止,我有这个代码:

var libxml = require('libxmljs');
var xml =  '<?xml version="1.0" encoding="UTF-8"?>' +
           '<root>' +
               '<child foo="bar">' +
                   '<grandchild baz="fizbuzz"><blah>grandchild content</blah></grandchild>' +
               '</child>' +
               '<child foo="bar1">' +
                   '<grandchild baz="fizbuzz">grandchild content 1</grandchild>' +
               '</child>' +
               '<child foo="bar3">' +
                   '<grandchild baz="fizbuzz3">grandchild content 3</grandchild>' +
               '</child>' +
               '<sibling>with content!</sibling>' +
           '</root>';


var xmlDoc = libxml.parseXml(xml);
var allxml = xmlDoc.root();  //store all nodes as allxml
var allNodes = xmlDoc.childNodes(); //all child nodes to array
var elem = xmlDoc.node('name1');
var newChild = libxml.Element(xmlDoc, 'new-child');
elem.addChild(newChild);

但是当我运行它时出现以下错误:

return this._root(elem);
            ^
Error: Holder document already has a root node

有谁知道这里发生了什么?

4

1 回答 1

0

您的问题是 xmlDoc.node()。在文档上,此方法尝试创建一个新的根节点。你想要的是 xmlDoc.root() 返回当前的根节点。不过,此代码示例还有其他问题。请参阅文档https://github.com/polotek/libxmljs/wiki

于 2012-12-20T09:06:32.397 回答