當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript libxmljs.Document類代碼示例

本文整理匯總了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;
}
開發者ID:zaidka,項目名稱:genieacs,代碼行數:9,代碼來源:soap.ts

示例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!');
開發者ID:3dsorcery,項目名稱:DefinitelyTyped,代碼行數:30,代碼來源:libxmljs-tests.ts

示例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>' +
開發者ID:pixelshaded,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:libxmljs-tests.ts


注:本文中的libxmljs.Document類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。