小程序实现TreeView树多选功能

话不多说,先上效果图:

小程序实现Treeview树多选功能

实现思路

源数据结构

首先我们的数据结构大概是:

[
  {
      "id": "0",
      "name": "动物分类",
      "pid": "-1",
      "children": [
          {
              "id": "1",
              "name": "哺乳动物",
              "pid": "0",
              "children": [
                  {
                      "id": "3",
                      "name": "狗",
                      "pid": "1",
                      "children": []
                  },
                  {
                      "id": "4",
                      "name": "猫",
                      "pid": "1",
                      "children": []
                  },
                  {
                      "id": "5",
                      "name": "大象",
                      "pid": &#

你可能感兴趣的:(小程序,数据结构,js,小程序,html5)