摘要: 直接上代码 1 import json 2 import xmltodict 3 4 def xmlToJson(xml_str): 5 '''传入xml字符串,返回字典''' 6 dic = xmltodict.parse(xml_str, encoding='utf-8') 7 dic = js 阅读全文
posted @ 2019-10-21 14:47 carlvine 阅读(1005) 评论(0) 推荐(0) 编辑