XML和JSON数据处理插件x2js

  • Post author:
  • Post category:其他




x2js

后端返回xml格式数据和json格式数据前端处理插件

GitHub地址:

https://github.com/abdolence/x2js


下载插件包



引入xml2json.min.js


JSON to XML

// Create x2js instance with default config

var x2js = new X2JS();
var jsonObj = { 
     MyRoot : {
                test: 'success',
                test2 : { 
                    item : [ 'val1', 'val2' ]
                }
      }
};
var xmlAsStr = x2js.json2xml_str( jsonObj );

XML to JSON

// Create x2js instance with default config

var x2js = new X2JS();
var xmlText = "<MyRoot><test>Success</test><test2><item>val1</item><item>val2</item></test2></MyRoot>";
var jsonObj = x2js.xml_str2json( xmlText );



版权声明:本文为weixin_44969308原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。