0
我在我的項目中使用了https://github.com/mar10/fancytree/。如何在特定時刻獲取花式樹的葉節點列表。獲取花式樹中的葉節點列表
我在我的項目中使用了https://github.com/mar10/fancytree/。如何在特定時刻獲取花式樹的葉節點列表。獲取花式樹中的葉節點列表
你可以試試這個模式:
var leafNodes = [];
tree.visit(function(node){
if (!node.hasChildren()) {
leafNodes.push(node);
}
});