【问题标题】:D3.js - exit() section does not remove all dataD3.js - exit() 部分不会删除所有数据
【发布时间】:2013-08-26 04:56:19
【问题描述】:

我将http://bl.ocks.org/mbostock/950642http://bl.ocks.org/mbostock/1095795 d3 强制布局示例合并到以下代码中:

<!DOCTYPE html>
<meta charset="utf-8">
<style>

/*.link {
  stroke: #000;
  stroke-width: 1.5px;
}

.node {
  fill: #000;
  stroke: #fff;
  stroke-width: 1.5px;
}

.node.a { fill: #1f77b4; }
.node.b { fill: #ff7f0e; }
.node.c { fill: #2ca02c; }*/

.link {
  stroke: #ccc;
}

.node text {
  pointer-events: none;
  font: 10px sans-serif;
}

</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>

var width = 960,
    height = 500;

var color = d3.scale.category10();

var nodes = [],
    links = [];

var force = d3.layout.force()
    .nodes(nodes)
    .links(links)
    .charge(-400)
    .linkDistance(120)
    .size([width, height])
    .on("tick", tick);

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

var node = svg.selectAll(".node"),
    link = svg.selectAll(".link");

// 1. Add three nodes and three links.
setTimeout(function() {
  var a = {id: "a"}, b = {id: "b"}, c = {id: "c"};
  nodes.push(a, b, c);
  links.push({source: a, target: b}, {source: a, target: c}, {source: b, target: c});
  start();
}, 0);

// 2. Remove node B and associated links.
setTimeout(function() {
  nodes.splice(1, 1); // remove b
  links.shift(); // remove a-b
  links.pop(); // remove b-c
  start();
}, 3000);

// Add node B back.
setTimeout(function() {
  var a = nodes[0], b = {id: "b"}, c = nodes[1];
  nodes.push(b);
  links.push({source: a, target: b}, {source: b, target: c});
  start();
}, 6000);

function start() {
  link = link.data(force.links(), function(d) { return d.source.id + "-" + d.target.id; });
  //link.enter().insert("line", ".node").attr("class", "link");
  link.enter().append("line").attr("class", "link");
  link.exit().remove();

  node = node.data(force.nodes(), function(d) { return d.id;});
  node.enter().append("g")
    .attr("class", "node")
    .call(force.drag);
  node.append("image")
    .attr("xlink:href", "https://github.com/favicon.ico")
    .attr("x", -8)
    .attr("y", -8)
    .attr("width", 16)
    .attr("height", 16);
  node.append("text")
    .attr("dx", 12)
    .attr("dy", ".35em")
    .text(function (d) {console.log(d.id); return d.id;});
  //node.enter().append("circle").attr("class", function(d) { return "node " + d.id; }).attr("r", 8);
  node.exit().remove();

  force.start();
}

function tick() {
  node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });


  link.attr("x1", function(d) { return d.source.x; })
      .attr("y1", function(d) { return d.source.y; })
      .attr("x2", function(d) { return d.target.x; })
      .attr("y2", function(d) { return d.target.y; });
}

</script>

在代码执行后,一些 svg "g" 节点有多个文本和图像子节点,尽管我认为它们应该在 exit() 部分中删除。

我该如何解决?任何帮助表示赞赏。

编辑:

文本和图像节点重复示例:

<g class="node" transform="translate(411.8420674597886,245.93226853324168)">
    <image xlink:href="https://github.com/favicon.ico" x="-8" y="-8" width="16" height="16"></image>
    <text dx="12" dy=".35em">a</text>
    <image xlink:href="https://github.com/favicon.ico" x="-8" y="-8" width="16" height="16"></image>
    <text dx="12" dy=".35em">a</text>
    <image xlink:href="https://github.com/favicon.ico" x="-8" y="-8" width="16" height="16"></image>
    <text dx="12" dy=".35em">a</text>
</g>

编辑2: 正如@LarsKotthoff 建议的那样:

<!DOCTYPE html>
<meta charset="utf-8">
<style>

/*.link {
  stroke: #000;
  stroke-width: 1.5px;
}

.node {
  fill: #000;
  stroke: #fff;
  stroke-width: 1.5px;
}

.node.a { fill: #1f77b4; }
.node.b { fill: #ff7f0e; }
.node.c { fill: #2ca02c; }*/

.link {
  stroke: #ccc;
}

.node text {
  pointer-events: none;
  font: 10px sans-serif;
}

</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>

var width = 960,
    height = 500;

var color = d3.scale.category10();

var nodes = [],
    links = [];

var force = d3.layout.force()
    .nodes(nodes)
    .links(links)
    .charge(-400)
    .linkDistance(120)
    .size([width, height])
    .on("tick", tick);

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

var node = svg.selectAll(".node"),
    link = svg.selectAll(".link");

// 1. Add three nodes and three links.
setTimeout(function() {
  var a = {id: "a"}, b = {id: "b"}, c = {id: "c"};
  nodes.push(a, b, c);
  links.push({source: a, target: b}, {source: a, target: c}, {source: b, target: c});
  start();
}, 0);

// 2. Remove node B and associated links.
setTimeout(function() {
  nodes.splice(1, 1); // remove b
  links.shift(); // remove a-b
  links.pop(); // remove b-c
  start();
}, 3000);

// Add node B back.
setTimeout(function() {
  var a = nodes[0], b = {id: "b"}, c = nodes[1];
  nodes.push(b);
  links.push({source: a, target: b}, {source: b, target: c});
  start();
}, 6000);

function start() {
  link = link.data(force.links(), function(d) { return d.source.id + "-" + d.target.id; });
  //link.enter().insert("line", ".node").attr("class", "link");
  link.enter().append("line").attr("class", "link");
  link.exit().remove();

  node = node.data(force.nodes(), function(d) { return d.id;});
  var appendedG= node.enter().append("g")
    .attr("class", "node")
    .call(force.drag);
  appendedG.append("image")
    .attr("xlink:href", "https://github.com/favicon.ico")
    .attr("x", -8)
    .attr("y", -8)
    .attr("width", 16)
    .attr("height", 16);
  appendedG.append("text")
    .attr("dx", 12)
    .attr("dy", ".35em")
    .text(function (d) {console.log(d.id); return d.id;});
  //node.enter().append("circle").attr("class", function(d) { return "node " + d.id; }).attr("r", 8);
  node.exit().remove();

  force.start();
}

function tick() {
  node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });


  link.attr("x1", function(d) { return d.source.x; })
      .attr("y1", function(d) { return d.source.y; })
      .attr("x2", function(d) { return d.target.x; })
      .attr("y2", function(d) { return d.target.y; });
}

</script>

【问题讨论】:

  • 看起来您正在附加 imagetext 元素以进行更新,而不是输入选择。你错过了.enter()前面的appends吗?
  • @LarsKotthoff 不知道我是否理解正确。当我添加 node.enter().append("image") 和 node.enter().append("text") 时, 标签不再存储在 标签内。此外,我注意到即使这些标签是重复的。
  • 或者,您可以保存第一个 append 操作的结果并附加到该结果。目前,nodes 是数据匹配的结果,您在其中附加了两个不同的选择,这可能不是您想要的。
  • @LarsKotthoff 成功了!谢谢。现在我必须检查代码中发生了什么,因为我还不明白。

标签: javascript svg d3.js


【解决方案1】:

试试这个:

node = node.data(force.nodes(), function(d) { return d.id;});
var newNode = node.enter().append("g")
     .attr("class", "node")
     .call(force.drag);
newNode.append("image")
    .attr("xlink:href", "https://github.com/favicon.ico")
    .attr("x", -8)
    .attr("y", -8)
    .attr("width", 16)
    .attr("height", 16);
newNode.append("text")
    .attr("dx", 12)
    .attr("dy", ".35em")
    .text(function (d) {console.log(d.id); return d.id;});
  //node.enter().append("circle").attr("class", function(d) { return "node " + d.id;    }).attr("r", 8);
node.exit().remove();

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-11-11
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多