32

样本

d3.select("body").selectAll("div")
    .data([4, 8, 15, 16, 23, 42])
  .enter().append("div")
    .text(function(d) { return d; });

不禁想知道如何使附加对提供的数据敏感 -do append and fill text用一些谓词说其他if d == 8不附加?

4

1 回答 1

61

最简单的方法是在调用之前过滤您的数组.data( ... )

d3.select("body").selectAll("p")
    .data([4, 8, 15, 16, 23, 42].filter(function(d){ return d < 10; }))
  .enter().append("div")
    .text(function(d) { return d; });

将为 4 和 8 创建一个 div。

或者,您可以在将数组绑定到页面上的元素后过滤您的选择,以有条件地创建子元素:

d3.select("body").selectAll("div")
    .data([4, 8, 15, 16, 23, 42])
  .enter().append("div")
    .text(function(d) { return d; })
 .filter(function(d){ return d == 8; }).append("span")
    .text("Equal to 8")
于 2013-07-18T14:14:15.687 回答