例如下面数据,我想找打第一个type = 2的节点 找到name = 77的那个 用递归要怎么实现或者用其他什么方法可以实现,希望能给出详细代码data: [{ name: '11', type: '0', subList: [{ name: '44', type: '0', subList: [{ name: '66', type: '0', subList: [] },{ name: '77', type: '2', subList: null }] }] },{ name: '22', type: '0', subList: [{ name: '55', type: '2', subList: null }] },{ name: '33', type: '2', subList: null }]
添加回答
举报
0/150
提交
取消