美文网首页
JS 省市区数组

JS 省市区数组

作者: Cherry丶小丸子 | 来源:发表于2024-03-27 14:30 被阅读0次
    // res.data 后台返回的数据
    // 省的数组
    const provinceData = res.data.map(e => e.name);
    
    // 市的数组
    const cityData = res.data.map(e => {
        const arr = [];
        arr.push(
            e.children.map(c => c.name)
        )
        return arr;
    })
    
    // 区的数组
    const areaData = res.data.map(e => {
        const arr = [];
        arr.push(
            e.children.map(c =>
                c.children.map(d => d.name)
            )
        )
        return arr;
    })
    

    相关文章

      网友评论

          本文标题:JS 省市区数组

          本文链接:https://www.haomeiwen.com/subject/dyzhtjtx.html