我正在尝试将新的子节点添加到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
有谁知道这里发生了什么?
答案 0 :(得分:0)
您的问题是xmlDoc.node()。在该文档上,此方法尝试创建新的根节点。你想要的是xmlDoc.root()返回当前的根节点。但是这个代码示例还有其他问题。请参阅文档https://github.com/polotek/libxmljs/wiki