首页 > 课堂 > 小程序 > 正文

扩展微信小程序框架功能:Xml处理x2js讲解

2020-03-21 16:18:28
字体:
来源:转载
供稿:网友

x2js是一个 实现 XML 与 JavaScript 对象之间相互转换的工具库。转换并不一定是无损的,但十分便利。

x2js

XML 转换为 JavaScript 对象

  
  1. var x2js = new X2JS();  var document = x2js.xml2js("1");  console.log(document.foo); // 输出:Object {a: "1"} 

JavaScript 对象转换为 XML

  1. var xml = x2js.js2xml({foo: {a: 1}});  console.log(xml); // 输出:1 

x2js 使用

 
  1. var x2js2 = new X2JS();  var xml = `Code BlogNic RaboyNicRaboyMariaCampos`; 
  2.  
  3.  var document = x2js2.xml2js(xml);    
  4.  console.log(document.business.company); // 输出:Code Blog 
  5.  console.log(document.business.owner); // 输出:Nic Raboy 
  6.  console.log(document.business.employee[0].firstname); // 输出:Nic 
  7.  console.log(document.business.employee[0].lastname); // 输出:Raboy 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表