如何让d3树形图在本地工作?

时间:2013-08-11 23:23:34

标签: javascript html5 svg d3.js

我正在尝试学习使用d3并制作类似于这个可折叠树的东西: http://bl.ocks.org/mbostock/4339083

如何使此交互式树形图在本地运行?

我已将以下文件从网络中保存在同一目录中:

   d3_graph/tree_files/tree.html
   d3_graph/tree_files/d3.js
   d3_graph/tree_files/d3.layout.js
   d3_graph/tree_files/flare.json
   d3_graph/tree_files/style.css

这产生了图形,但看起来chrome保存了由tree.html中的javascript创建的已绘制的SVG,并且树不像上面的链接那样是交互式的。

在查看网络上工作版本的来源后,我看到代码不同,所以我将其粘贴到tree.html并将文件更改为指向d3.js,d3.layout的正确位置.js,style.css和flare.json

这仍然会产生一个空白的白页,我不知道还能做什么。我怎样才能做到这一点?

以下是我编辑的tree.html版本:

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

.node {
  cursor: pointer;
}

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

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

.link {
  fill: none;
  stroke: #ccc;
  stroke-width: 1.5px;
}

</style>
<body>
    <link type="text/css" rel="stylesheet" href="style.css">
    <script type="text/javascript" src="d3.js"></script>
    <script type="text/javascript" src="d3.layout.js"></script>
    <style type="text/css">


.node circle {
  cursor: pointer;
  fill: #fff;
  stroke: steelblue;
  stroke-width: 1.5px;
}

.node text {
  font-size: 11px;
}

path.link {
  fill: none;
  stroke: #ccc;
  stroke-width: 1.5px;
}

    </style>
<script>

var margin = {top: 20, right: 120, bottom: 20, left: 120},
    width = 960 - margin.right - margin.left,
    height = 800 - margin.top - margin.bottom;

var i = 0,
    duration = 750,
    root;

var tree = d3.layout.tree()
    .size([height, width]);

var diagonal = d3.svg.diagonal()
    .projection(function(d) { return [d.y, d.x]; });

var svg = d3.select("body").append("svg")
    .attr("width", width + margin.right + margin.left)
    .attr("height", height + margin.top + margin.bottom)
  .append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

d3.json("flare.json", function(error, flare) {
  root = flare;
  root.x0 = height / 2;
  root.y0 = 0;

  function collapse(d) {
    if (d.children) {
      d._children = d.children;
      d._children.forEach(collapse);
      d.children = null;
    }
  }

  root.children.forEach(collapse);
  update(root);
});

d3.select(self.frameElement).style("height", "800px");

function update(source) {

  // Compute the new tree layout.
  var nodes = tree.nodes(root).reverse(),
      links = tree.links(nodes);

  // Normalize for fixed-depth.
  nodes.forEach(function(d) { d.y = d.depth * 180; });

  // Update the nodes…
  var node = svg.selectAll("g.node")
      .data(nodes, function(d) { return d.id || (d.id = ++i); });

  // Enter any new nodes at the parent's previous position.
  var nodeEnter = node.enter().append("g")
      .attr("class", "node")
      .attr("transform", function(d) { return "translate(" + source.y0 + "," + source.x0 + ")"; })
      .on("click", click);

  nodeEnter.append("circle")
      .attr("r", 1e-6)
      .style("fill", function(d) { return d._children ? "lightsteelblue" : "#fff"; });

  nodeEnter.append("text")
      .attr("x", function(d) { return d.children || d._children ? -10 : 10; })
      .attr("dy", ".35em")
      .attr("text-anchor", function(d) { return d.children || d._children ? "end" : "start"; })
      .text(function(d) { return d.name; })
      .style("fill-opacity", 1e-6);

  // Transition nodes to their new position.
  var nodeUpdate = node.transition()
      .duration(duration)
      .attr("transform", function(d) { return "translate(" + d.y + "," + d.x + ")"; });

  nodeUpdate.select("circle")
      .attr("r", 4.5)
      .style("fill", function(d) { return d._children ? "lightsteelblue" : "#fff"; });

  nodeUpdate.select("text")
      .style("fill-opacity", 1);

  // Transition exiting nodes to the parent's new position.
  var nodeExit = node.exit().transition()
      .duration(duration)
      .attr("transform", function(d) { return "translate(" + source.y + "," + source.x + ")"; })
      .remove();

  nodeExit.select("circle")
      .attr("r", 1e-6);

  nodeExit.select("text")
      .style("fill-opacity", 1e-6);

  // Update the links…
  var link = svg.selectAll("path.link")
      .data(links, function(d) { return d.target.id; });

  // Enter any new links at the parent's previous position.
  link.enter().insert("path", "g")
      .attr("class", "link")
      .attr("d", function(d) {
        var o = {x: source.x0, y: source.y0};
        return diagonal({source: o, target: o});
      });

  // Transition links to their new position.
  link.transition()
      .duration(duration)
      .attr("d", diagonal);

  // Transition exiting nodes to the parent's new position.
  link.exit().transition()
      .duration(duration)
      .attr("d", function(d) {
        var o = {x: source.x, y: source.y};
        return diagonal({source: o, target: o});
      })
      .remove();

  // Stash the old positions for transition.
  nodes.forEach(function(d) {
    d.x0 = d.x;
    d.y0 = d.y;
  });
}

// Toggle children on click.
function click(d) {
  if (d.children) {
    d._children = d.children;
    d.children = null;
  } else {
    d.children = d._children;
    d._children = null;
  }
  update(d);
}

</script>



</body></html>

编辑: 我刚刚在chrome中检查了控制台,发现了这个错误:

XMLHttpRequest cannot load file:///home/user/Downloads/d3_graph/tree_files/flare.json. Cross origin requests are only supported for HTTP. 

可能是我无法在本地运行并且需要通过Web服务器访问tree.html吗?

3 个答案:

答案 0 :(得分:1)

其他答案有效,但如果您不想触发Web服务器,还有其他选择:

  • Firefox应该默认打开你的文件并加载本地json,所以没什么可做的。

  • 您可以使用标记--allow-file-access-from-files启动Chrome,并加载JSON。

答案 1 :(得分:0)

.json文件需要通过http请求加载,因此将文件放在Web服务器上并通过http://myserver/tree.html访问tree.html可以解决此问题。

答案 2 :(得分:0)

我使用d3遇到了同样的问题。可能文件无法加载,因为某些浏览器具有阻止它们通过JavaScript加载本地文件的限制(为了安全)。 我知道您已经回答了您的问题,但为了完整起见,您还可以使用自己的本地计算机来托管并自行提供文件。

  • 打开终端
  • 导航到您正在使用的文件目录 (使用cd,如果您的文件位于桌面上名为的文件夹中 项目:cd Desktop/project
  • 使用Python运行服务器: type python -m SimpleHTTPServer 1234 &.数字是端口,您可以使用任何四个数字。
  • 转到您的浏览器并输入 localhost:1234
  • localhost:1234/page2.html了解其他文件