【发布时间】: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