数组 树形结构递归循环

getCheckedNode(jsonObj, r) {
    // 循环所有键
    // console.log(jsonObj, r);

    for (var v in jsonObj) {
      var element = jsonObj[v]
      // 1.判断是对象或者数组
      if (typeof (element) == 'object') {
        this.getCheckedNode(element, r)
      } else {
        if (element == r) {
          console.log(v + ':' + r, jsonObj.key)
          this.outAreaCode = jsonObj.key
          this.areaCode = jsonObj.areaCode.substring(0, 6)
          this.getEcharts()
          return
        }
      }
    }
  }
上一篇:基于遗传算法(deap)的非线性函数寻优与编码方式浅谈


下一篇:codeforces 1106 E