js 通过某个字段遍历出有规律的数组 比如通过年份遍历出数组

发布时间:2024年01月10日

    getDetectYear(){
      this.getDicts("phy_detect_year").then(res=>{
        //console.log("getDetectYear")
        //dictValue字段 最后拼成字段detectYear
        let odata = res.data
        console.log(odata)
        let oyear = []
        if(odata.length == 0) return
        for(let i in odata){
          oyear[i] = [
            `${odata[i].dictValue}春季初期`,
            `${odata[i].dictValue}春季末期`,
            `${odata[i].dictValue}秋季初期`,
            `${odata[i].dictValue}秋季末期`,
          ]
        }
        oyear.reverse()//倒序
        console.log(oyear)
        this.detectYear = oyear.flat() //flat()将二维数组合并为一个一维数组
        console.log(this.detectYear)
  ? ? });
    },

文章来源:https://blog.csdn.net/qq_27806371/article/details/135506237
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。