解析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 将特定标签解析为数组