javascript - D3.js - exit() 部分不会删除所有数据

标签 javascript svg d3.js

我合并了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>

最佳答案

试试这个:

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();

关于javascript - D3.js - exit() 部分不会删除所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18397759/

相关文章:

html - 在 HTML 表格单元格中调整 SVG 的大小

javascript - d3.js : creating a nested array (matrix) from a flat array

javascript - 使用 jquery 重置值

javascript - 如何使用两张单独的图片上传预览?

javascript - polymer NEON 动画不起作用

javascript - SVG 标记 - 我可以设置长度和 Angular 吗?

javascript - SVG路径: Curve tailing off of a straight line

javascript - 在 Nashorn 中运行 jsdom

javascript - D3 折线图 - 未捕获类型错误 : Cannot read property 'length' of undefined

javascript - fancybox v2 iframe 高度调整