16

我有一个节点和边的网络图,并且希望在单击它后获取节点数据。例如,

var network = new vis.Network(container, data, options);
network.on( 'click', function(properties) {
    console.log('clicked node ' + properties.nodes);
});

但这只是返回一些内部 id [105]。有没有办法获取与节点关联的实际数据?

4

1 回答 1

29

您在属性中获得的节点 ID 不是“一些内部 ID”,而是您自己定义的节点的 ID。您可以使用以下节点简单地从您自己的节点读取节点数据DataSet

var nodes = new vis.DataSet([...]);
var edges = new vis.DataSet([...]);
var data = {nodes: nodes, edges: edges};

var network = new vis.Network(container, data, options);
network.on( 'click', function(properties) {
    var ids = properties.nodes;
    var clickedNodes = nodes.get(ids);
    console.log('clicked nodes:', clickedNodes);
});
于 2016-03-10T15:18:28.270 回答