var data = {
    "list": [{
        "list": [ {
            "list": [{
                "list": [{"list": [{"four": "4", "one": "1", "three": "3", "two": "3"}], "value": "4"}],
                "value": "3"
            }, {
                "list": [{
                    "list": [{"four": "4", "one": "1", "three": "4", "two": "3"}, {
                        "four": "4",
                        "one": "1",
                        "three": "4",
                        "two": "3"
                    }], "value": "4"
                }], "value": "4"
            }], "value": "3"
        }], "value": "1"
    }, {
        "list": [{
            "list": [{
                "list": [{"list": [{"four": "4", "one": "2", "three": "3", "two": "2"}], "value": "4"}],
                "value": "3"
            }], "value": "2"
        }], "value": "2"
    }]
}
var num = 0;
function recursion(obj,k) {
    num = Math.max(num,k);
    console.log(k);
    if (obj.list)
        obj.list.forEach(function(v, i){
            recursion(v,k+1);
        });
}
recursion(data,1);
console.log("最深层级数"+num);

我遇到的问题,得到大神解决,特此分享

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐