0

我正在尝试学习使用 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. 

难道是我不能在本地运行它,需要通过网络服务器访问tree.html?

4

3 回答 3

1

其他答案有效,但如果您不想启动 Web 服务器,还有另一种选择:

  • 默认情况下,Firefox 应该打开您的文件并加载本地 json,因此无需执行任何操作。

  • 您可以使用 flag 启动 Chrome --allow-file-access-from-files,然后将加载 JSON。

于 2013-09-10T18:33:11.183 回答
0

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

  • 打开终端
  • 导航到您正在使用的文件目录(使用cd,如果您的文件位于桌面上名为 project: 的文件夹中cd Desktop/project
  • 使用 Python 运行服务器: typepython -m SimpleHTTPServer 1234 &. 数字是端口,你可以使用任何你喜欢的四位数字。
  • 转到您的浏览器并输入 localhost:1234
  • localhost:1234/page2.html对于其他文件
于 2013-09-09T04:30:44.470 回答
0

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

于 2013-08-12T02:14:46.890 回答