本文整理汇总了TypeScript中libxmljs.Document类的典型用法代码示例。如果您正苦于以下问题:TypeScript Document类的具体用法?TypeScript Document怎么用?TypeScript Document使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Document类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: createSoapEnv
function createSoapEnv(cwmpVersion: string): Element {
const xml = new Document();
const env = xml.node("soap-env:Envelope");
for (const prefix of Object.keys(NAMESPACES[cwmpVersion]))
env.defineNamespace(prefix, NAMESPACES[cwmpVersion][prefix]);
return env;
}
示例2: while
var children = xmlDoc.root().childNodes();
var child = children[0];
console.log(child.attr('foo').value()); // prints "bar"
var parser = new libxmljs.SaxParser();
parser.on('startDocument', null);
parser.on('startElement', null);
var parser2 = new libxmljs.SaxPushParser();
// connect any callbacks here
parser2
.on('startDocument', null)
.on('startElement', null)
var xmlChunk: any;
while(xmlChunk) {
parser2.push(xmlChunk);
}
var doc = new libxmljs.Document();
doc.node('root')
.node('child').attr({foo: 'bar'})
.node('grandchild', 'grandchild content').attr({baz: 'fizbuzz'})
.parent()
.parent()
.node('sibling', 'with content!');
示例3: while
parser.on('startElement', () => 0);
const parser2 = new libxmljs.SaxPushParser();
// connect any callbacks here
parser2
.on('startDocument', () => 0)
.on('startElement', () => 0);
const xmlChunk = '';
while (xmlChunk) {
parser2.push(xmlChunk);
}
const doc = new libxmljs.Document();
((doc.node('root')
.node('child').attr({foo: 'bar'})
.node('grandchild', 'grandchild content').attr({baz: 'fizbuzz'})
.parent()
) as libxmljs.Element).parent()
.node('sibling', 'with content!');
const {name, externalId, systemId} = doc.getDtd();
const xmlWithNs = '<?xml version="1.0" encoding="UTF-8"?>' +
'<root>' +
'<child xmlns:a="http://test.com/test" foo="bar">' +
'<a:grandchild baz="fizbuzz">grandchild content</a:grandchild>' +
'</child>' +
'<sibling>with content!</sibling>' +