处理对象包对象数据

{
      a: { a: 1 },
      b: { b: 2 },
      c: { c: 3 },
      d: { d: 4 }
    }

利用for in遍历对象对象

 for (const key in obj) {
      console.log(obj[key])
    }
/*    
    a: { a: 1 },
    b: { b: 2 },
    c: { c: 3 },
    d: { d: 4 }
*/

数据处理,构建对象体

 const columns = []
      for (const i in list) {
        const data = {
          text: list[i].name,
          id: list[i].id,
          children: [
          ]
        }
        if (list[i].city) {
          for (const j in list[i].city) {
            const city = {
              text: list[i].city[j].name,
              id: list[i].city[j].id,
              children: [
              ]
            }
            data.children.push(city)
            if (list[i].city[j].region) {
              for (const x in list[i].city[j].region) {
                const region = {
                  text: list[i].city[j].region[x].name,
                  id: list[i].city[j].region[x].id
                }
                city.children.push(region)
              }
            }
          }
        }
        columns.push(data)
      }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值