解析从api到JSON的XML响应

时间:2019-01-17 20:58:51

标签: angularjs json angular parsing

如何在angular中解析对JSON的XML响应。

这是我的答复:

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/"><?xml version="1.0" encoding="utf-8"?&gt;
&lt;FeratelDsiRS xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Status="0" Message="OK" xmlns="XXXXX"&gt;
  &lt;Result Index="1"&gt;
    &lt;Events&gt;
.....
    &lt;/Events&gt;
  &lt;/Result&gt;
&lt;/FeratelDsiRS&gt;</string>

2 个答案:

答案 0 :(得分:0)

Cheerio

Cheerio是我的首选,仅仅是因为我一直在将其用于项目,并且它已经存在。它也支持XML解析,

const $ = cheerio.load('<ul id="fruits">...</ul>', {
    normalizeWhitespace: true,
    xmlMode: true
});

与CSS选择器相同的基本jQuery风格接口。

答案 1 :(得分:0)

基本上,您需要将XML转换为Json,我更喜欢使用自定义函数来解析XML

function xmlToJson(xml) {
    var obj = {};
    if (xml.nodeType == 1) {
        // do attributes
        if (xml.attributes.length > 0) {
        obj["@attributes"] = {};
            for (var j = 0; j < xml.attributes.length; j++) {
                var attribute = xml.attributes.item(j);
                obj["@attributes"][attribute.nodeName] = attribute.nodeValue;
            }
        }
    } else if (xml.nodeType == 3) { // text
        obj = xml.nodeValue;
    }

    if (xml.hasChildNodes()) {
        for(var i = 0; i < xml.childNodes.length; i++) {
            var item = xml.childNodes.item(i);
            var nodeName = item.nodeName;
            if (typeof(obj[nodeName]) == "undefined") {
                obj[nodeName] = xmlToJson(item);
            } else {
                if (typeof(obj[nodeName].push) == "undefined") {
                    var old = obj[nodeName];
                    obj[nodeName] = [];
                    obj[nodeName].push(old);
                }
                obj[nodeName].push(xmlToJson(item));
            }
        }
    }
    return obj;
};