如何使用iv树广度优先搜索api

How to use ivhtree bread first search api

我正在尝试使用 ivhTreeviewBfs (https://github.com/iVantage/angular-ivh-treeview#ivhtreeviewbfstree-opts-cb)

ivhTreeviewBfs(myTree, function(node) {
  console.log(node)
})

但是这只打印第一级节点。如何遍历整个列表?

我遇到了同样的问题。 经过一些研究和测试,当您通过 ivh-treeview-children-attribute.

覆盖子项的默认属性时,似乎会发生此行为

该服务不再检测到任何子级 (undefined),因此仅处理第一级。

这个demo(从@ua_boaz的link分叉)说明了这个问题。

我还在想办法解决它。

更新: This issue reports a similar problem. A workaround is to set the childrenAttribute globally using the ivhTreeviewOptionsProvider, demo here.