获取花式树中的叶节点列表

时间:2017-10-09 05:22:01

标签: fancytree

我在我的项目中使用https://github.com/mar10/fancytree/。如何在给定时刻获取奇特树的叶节点列表。

1 个答案:

答案 0 :(得分:0)

你可以尝试这种模式:

var leafNodes = [];

tree.visit(function(node){
    if ( !node.hasChildren() ) {
        leafNodes.push(node);
    }
});