Vue将将后端返回的list数据转化为树结构【array-to-tree】

Vue将将后端返回的list数据转化为树结构【array-to-tree】,第1张

下载
cnpm i -S array-to-tree
引入
import arrayToTree from "array-to-tree";
使用

    const pidData = [
      { name: "aa", id: "1", pid: null },
      { name: "bb", id: 2, pid: 1 },
      { name: "cc", id: 3, pid: "" },
      { name: "dd", id: 4, pid: 3 },
      { name: "ee", id: 5, pid: "3" },
    ];
    const result = arrayToTree(pidData, {
      parentProperty: "pid",
      customID: "id",
      childrenProperty: "children",
    });
    console.log(result);

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/940472.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-17
下一篇 2022-05-17

发表评论

登录后才能评论

评论列表(0条)

保存