如何在Tree View对象中获取Parent层次结构

时间:2017-06-13 07:49:37

标签: javascript arrays filter nested treeview

嗨我有一个父对象和嵌套子对象的树对象,用复选框显示树。如果选中子项,我需要获取父级和祖父级名称,直到孔级别。我的json下面检查了真正的属性

    {
      [
        Name: All,
        checked: false,
        children: [
          {
            Name: 'software',
children: [
              {
                Name: 'children1',
                checked: true,
                children: [
                  {
                    Name: 'childen2',
                    checked: true
                  }
                ]
              }
            ]
          }
        ]
      ]
    }

Tree Structure

在Json中选择Children2意味着我需要的格式如同 全部 - >软件 - > children1 - >孩子2就像那样...

1 个答案:

答案 0 :(得分:0)

这适合你想要的: jquery-bonsai