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

Get the list of leaf nodes in fancy tree

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

您可以试试这个模式:

var leafNodes = [];

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