这条线有什么作用? (javascript 中的 xml2json 转换)
What does this line do? (xml2json conversion in javascript)
您好,我在网上找到了一种将 XML 转换为 JSON 的方法。我已经使用了一段时间,效果很好。现在我需要修改它以满足我的特定需求,但是修改它很困难,因为我不完全理解这种方法每行都在做什么。具体如下一行。
if (typeof(obj[nodeName].push) == "undefined" )
我一无所知。我相信这个操作是在只有一个方法的 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;
};
看来是在测试obj对象中的元素是否为数组。
从快速查看您提供的代码来看,此方法似乎遍历 xml 中的元素并尝试构建具有相同节点嵌套的 JSON 对象 (obj)。所以像
<ants>
<hill></hill>
<picnic></picnic>
</ants>
看起来像
{
ants: [
{hill:...},
{picnic:...}
]
}
obj[nodeName].push
的测试只是要求obj[nodeName]中的元素有函数push,也就是说它是一个数组。如果不是,则取出值,使新值成为空数组,然后将旧值压入数组。
您好,我在网上找到了一种将 XML 转换为 JSON 的方法。我已经使用了一段时间,效果很好。现在我需要修改它以满足我的特定需求,但是修改它很困难,因为我不完全理解这种方法每行都在做什么。具体如下一行。
if (typeof(obj[nodeName].push) == "undefined" )
我一无所知。我相信这个操作是在只有一个方法的 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;
};
看来是在测试obj对象中的元素是否为数组。
从快速查看您提供的代码来看,此方法似乎遍历 xml 中的元素并尝试构建具有相同节点嵌套的 JSON 对象 (obj)。所以像
<ants>
<hill></hill>
<picnic></picnic>
</ants>
看起来像
{
ants: [
{hill:...},
{picnic:...}
]
}
obj[nodeName].push
的测试只是要求obj[nodeName]中的元素有函数push,也就是说它是一个数组。如果不是,则取出值,使新值成为空数组,然后将旧值压入数组。