http://www.bejson.com/go.php?u=http://www.bejson.com/xml2json
例如:
腾讯笔试题:
<xml>
<list>
<item>
<id>12</id>
<name>张三</name>
</item>
<item>
<id>13</id>
<name>李四</name>
</item>
</list>
</xml>
json数据为:
{ "xml": { "list": { "item": [ { "id": "12","name": "张三" },{ "id": "13","name": "李四" } ] } } }
原文链接:https://www.f2er.com/xml/299536.html