我有一个分层的 json 对象,我想遍历它并将父节点附加到每个元素。这就是我所做的
function attach_back_reference(hierarchy, parent){
hierarchy.parent = parent;
for(var i in hierarchy){
if(jQuery.isPlainObject(hierarchy[i]))
attach_back_reference(hierarchy[i], hierarchy);
}
}
但这给出了错误。Maximum call stack size exceeded