您好我在线找到了将XML转换为JSON的方法。我一直在使用它,它运作良好。现在我需要对其进行修改以满足我的特定需求,但修改它很困难,因为我不完全理解这种方法每行的行数。具体如下。
if (typeof(obj[nodeName].push) == "undefined" )
我很无能为力。我相信这个操作是在NodeList上完成的,NodeList只有一个方法,而不是它。
如果有帮助,这就是整个方法
function xmlToJsonHelper(xml) {
// Create the return object
var obj = {};
console.log(typeof(xml))
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;
}
}
} 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" ) {
if(xml.childNodes[i].nodeType != 3 || !xml.childNodes[i].data.match("\\n"))
obj[nodeName] = xmlToJsonHelper(item); //modded to call helper
}
else {
if (typeof(obj[nodeName].push) == "undefined" ) {
var old = obj[nodeName];
obj[nodeName] = [];
obj[nodeName].push(old);
}
obj[nodeName].push(xmlToJsonHelper(item));//modded to call helper
}
}
}
return obj;
};
答案 0 :(得分:0)
看起来它正在测试obj对象中的元素是否为数组。
从快速查看您提供的代码看起来,此方法将遍历xml中的元素,并尝试使用相同的节点嵌套构建JSON对象(obj)。像
这样的东西<ants>
<hill></hill>
<picnic></picnic>
</ants>
看起来像
{
ants: [
{hill:...},
{picnic:...}
]
}
obj[nodeName].push
的测试只是要求obj [nodeName]中的元素具有push函数,这意味着它是一个数组。如果没有,则将值取出,使新值为空数组,然后将旧值推送到数组中。