我想检索已经渲染的vis.js网络的所有节点的ID。 我怎么能这样做?
// I want to do something similar to this.
nodeIdArray:String[]= this.network.getAllNodeIds()
赞赏任何指针。
答案 0 :(得分:1)
找到解决方案:
this.nodes = new DataSet(data.nodes)//Get the nodes
this.nodes.getIds() //This gives the string array of the node Id's