【问题标题】:Why use the '@attributes' in the code when convert XML to JSON为什么在将 XML 转换为 JSON 时在代码中使用“@attributes”
【发布时间】:2016-09-17 17:49:43
【问题描述】:

我见过很多版本的xml2json代码使用'@attributes',代码如下,我的问题是为什么不直接使用obj[attribute.nodeName] = attribute.nodeValue

// Changes XML to JSON
function xmlToJson(xml) {

    // Create the return object
    var obj = {};

    if (xml.nodeType == 1) { // element
        // 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;
    //why not just use obj[attribute.nodeName]  = attribute.nodeValue
            }
        }
    } else if (xml.nodeType == 3) { // text
        obj = xml.nodeValue;
    }

    // do children
    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;
};

链接是here

【问题讨论】:

  • 通常使用 attributes 属性来保存属性,常规 HTML DOM 元素与 element.attributes 做同样的事情,因为属性不是属性。不知道为什么要使用 @ 符号,但几十年来在其他语言(例如 PHP 等)解析 XML 时一直使用这种方式。

标签: javascript json xml


【解决方案1】:

XML 格式具有比 JSON 更广泛的数据结构。一条给定的信息可以作为节点提供:

<foo>33</foo>

...或作为属性:

<bar foo="33">

相反,JSON 只提供对象属性:

{"foo": 33}

鉴于此限制,自动化 JSON 到 XML 转换器的编写者需要一种方法来处理这种情况,并且使用任意前缀 @ 已成为事实上的标准。

【讨论】:

    【解决方案2】:

    我现在知道了。要区分元素属性和子元素属性。当它们彼此相等时,诀窍就奏效了。

    点赞:<tag attr= "Val"> <attr subattr="sub Val "></attr> </tag>

    【讨论】:

      猜你喜欢
      • 2015-09-27
      • 2022-06-10
      • 1970-01-01
      • 2014-07-30
      • 2013-09-01
      • 1970-01-01
      • 2020-08-25
      • 1970-01-01
      • 2015-10-04
      相关资源
      最近更新 更多