2

我想检索已呈现的 vis.js 网络的所有节点的 ID。我怎样才能做到这一点?

// I want to do something similar to this.
nodeIdArray:String[]= this.network.getAllNodeIds()

对此的任何指针表示赞赏。

4

1 回答 1

4

找到了解决方案:

this.nodes = new DataSet(data.nodes)//Get the nodes
this.nodes.getIds() //This gives the string array of the node Id's
于 2018-01-16T19:35:47.737 回答