本文整理汇总了TypeScript中libxmljs.SaxPushParser.on方法的典型用法代码示例。如果您正苦于以下问题:TypeScript SaxPushParser.on方法的具体用法?TypeScript SaxPushParser.on怎么用?TypeScript SaxPushParser.on使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类libxmljs.SaxPushParser
的用法示例。
在下文中一共展示了SaxPushParser.on方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: while
console.log(gchild.text()); // prints "grandchild content"
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!');
示例2: while
console.log(gchild.text()); // prints "grandchild content"
const children = xmlDoc.root()!.childNodes();
const child = children[0] as libxmljs.Element;
console.log(child.attr('foo')!.value()); // prints "bar"
const parser = new libxmljs.SaxParser();
parser.on('startDocument', () => 0);
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!');