通过这个 http://flowingdata.com/2012/08/02/how-to-make-an-interactive-network-visualization/
在这行代码中:
var node = nodesG.selectAll("circle.node").data(nodes, function (d) {
console.log("hello");
return d.id;
});
console.log
永远不会运行。我不确定为什么。
这是nodesG
:
var vis = d3.select(selection).append("svg")
.attr("width", width)
.attr("height", height);
nodesG = vis.append("g").attr("id", "nodes");