在这段代码中,http ://enjalot.com/inlet/4124664/
其中主要部分是:
function render(data) {
var nodz = svg.selectAll(".node")
.data(data);
nodz.enter().append("g")
.attr("class", "node")
.attr("id", function(d) { return "id"+d[0]+d[1]; })
.attr("x",0)
.attr("y", 0)
.attr("transform", function(d) {
return "translate(" + x(d[0]) + "," + y(d[1]) + ")";
})
.append("text")
.attr("x", 0)
.attr("y", 0)
.attr("stroke", "black")
.text(function(d) {return d[2]; });
// update
nodz.selectAll("text")
.text(function(d) {
return d[2]; });
// another go
d3.selectAll("text")
.text(function(d) {
return d[2]; });
}
// data in form [x pos, y pos, value to display]
var nodes = [[0,0,0],[1,1,0],[1, -1,0],[2,0,0], [2,2,0]];
render(nodes);
nodes2 = [[0,0,1],[1,1,1],[1, -1,1],[2,0,1], [2,2,1], [2, -2,1]];
render(nodes2);
我调用代码两次绘制一些节点。
我希望它在第一遍中绘制五个值为零的节点,
然后我将另一个项目添加到列表中并将所有值更新为 1,因此希望看到所有值都更改为 1 并出现一个新节点。相反,我只看到最后一个设置为 1。我尝试添加一个唯一 id 以将节点绑定到数据,但这不起作用。还尝试重新选择以查看数据现在是否已绑定。在我经历过的所有教程中,只需调用 selectAll().data() 部分即可更新数据,我错过了什么?