解析XML字符串为json对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析XML字符串为json对象相关的知识,希望对你有一定的参考价值。

  var overtime=‘<?xml version="1.0" encoding="UTF-8"?><response><code><liuhao>5555555</liuhao><age>555555555</age></code> <message>success</message> <totalCount>5000000</totalCount> <remainCount>4999883</remainCount> <DonateCount>12</DonateCount> <Limit>80088800</Limit></response>‘;
    function  parseXMLsimple(target){
        var reg=/<([a-z,A-Z]+)>(.+)<\/\1>/g;
        var obj={};
        target.replace(reg,function(a,b,c){
            obj[b]=reg.test(c)?parseXMLsimple(c):c;
        })
        return obj;
    }
    console.log(parseXMLsimple(overtime))

  

以上是关于解析XML字符串为json对象的主要内容,如果未能解决你的问题,请参考以下文章

在 NodeJs 中使用 fast-xml-parser 将特定标签解析为数组

PHP - xml到json转换:“无法将字符串解析为XML”

java与JSON

Python-Json字符串和XML解析

怎么把json字符串转成数组对象

微信小程序json数据如何处理?