中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue如何實現table表格里面數組多層嵌套取值

發布時間:2022-08-02 09:26:01 來源:億速云 閱讀:831 作者:iii 欄目:開發技術

這篇文章主要介紹“vue如何實現table表格里面數組多層嵌套取值”,在日常操作中,相信很多人在vue如何實現table表格里面數組多層嵌套取值問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue如何實現table表格里面數組多層嵌套取值”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

    vue table表格里面數組多層嵌套取值

    我現在是在表格里拿到級聯選擇器的多選的id,然后要根據這個id來匹配一個嵌套了三層的數組的第三層id,來拿名字渲染

    表格部分

    <tr >
                    <td >提醒給</td>
                    <td >
                      <!-- {{editForm.uids.toString().split(',')}} -->
                      <span v-for="item in editForm.uids.toString().split(',')" :key="item.id">
                        <!-- <p>{{dataHandle(editForm.uids)}}</p> -->
                        <p>{{dataHandle(item)}}</p>
                      </span>
                    </td>
                  </tr>
    ``

    methods里面定義方法

     // 提醒給點擊事件
    dataHandle(item) {
       let ary = []
     let name = ''
      let result = getUserName(this.options4)
      result.forEach(v2 => {
        if (item == v2.id) {
          name = v2.corp_name
        }
      })
      return name
      
      function getUserName(item) {
        item.forEach(v1 => {
          if (v1.children) return getUserName(v1.children)
          else {
            ary.push(v1)
          }
        })
        return ary
      }
    },

    vue 多層數組嵌套循環,動態取值匹配

    tableData:[], //存儲數組
    arrTarName:[] //結果數組
     
    this.tableData.push({
      siteName:i.siteName,
      tabdata:result.data
    }); 
     
    //循環+判斷取值
    for (let k = 0; k < result.data.length; k++) {
        if (this.arrTarName.length == 0) {
            this.arrTarName.push({
                indexName: result.data[k].indexName,
                polTracesouCount: result.data[k].polTracesouCount
            })
        } else {
            let isExist = false;
            for (let l = 0; l < this.arrTarName.length; l++) {
                if (this.arrTarName[l].indexName == result.data[k].indexName) {
                    isExist = true;
                    this.arrTarName[l].polTracesouCount = this.arrTarName[l].polTracesouCount + result.data[k].polTracesouCount;
                    break;
                }
            }
            if (!isExist) {
                this.arrTarName.push({
                    indexName: result.data[k].indexName,
                    polTracesouCount: result.data[k].polTracesouCount
                })
            }
        }
    }
    console.log(this.arrTarName)

    到此,關于“vue如何實現table表格里面數組多層嵌套取值”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    连州市| 迁安市| 会昌县| 靖安县| 南陵县| 大同市| 华坪县| 合山市| 瓮安县| 马尔康县| 通河县| 安化县| 鄂伦春自治旗| 花垣县| 怀柔区| 夏邑县| 金山区| 观塘区| 鄂伦春自治旗| 六枝特区| 咸阳市| 河源市| 常德市| 邵武市| 饶河县| 石景山区| 军事| 青神县| 射阳县| 鄂尔多斯市| 龙陵县| 郴州市| 历史| 三亚市| 名山县| 林甸县| 泾川县| 屏南县| 高陵县| 普陀区| 台江县|