js修改樹形結構的鍵值


1、修改之前的數據

2、代碼實現

// 修改樹形結構的鍵值 把label替換為title
    changeId2(objAry, key, newkey) {
      if (objAry != null) {
        objAry.forEach((item) => {
          Object.assign(item, {
            [newkey]: item[key],
          });
          delete item[key];
          this.changeId2(item.children, key, newkey);
        });
      }
    },

3、調用

this.changeId2(this.treedata, "label", "title"); 
//label是之前的鍵 title是要修改后的鍵 this.treedata是樹形結構的數據

4、修改之后的數據


完結!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM