前端对象数组转为数组的数组

//对象数组转为数组数组
    DomToList(item){ 
      let cityCode = []
      for (let value of item) { 
        console.log("输出地区表的值")
        console.log(value)
        cityCode.push([value.province,value.city,value.region])
      }
      return cityCode
    }
    原文作者:橘子味的芬达
    原文地址: https://blog.csdn.net/Orange_Fanta/article/details/124166694
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞