1

我正在从这里复制代码。除了我在服务器上运行 d3.layout.cloud.js 之外,我的代码基本上与示例代码相同。当我运行它时,我收到 d3.layout.cloud 不是函数的类型错误。这可能是什么原因?

    <!DOCTYPE html>
<meta charset="utf-8">
<script src="../lib/d3/d3.js"></script>
<script src="../d3.layout.cloud.js"></script>
<body>
<script>
  var fill = d3.scale.category20();

  d3.layout.cloud().size([300, 300])
      .words([
        "Hello", "world", "normally", "you", "want", "more", "words",
        "than", "this"].map(function(d) {
        return {text: d, size: 10 + Math.random() * 90};
      }))
      .rotate(function() { return ~~(Math.random() * 2) * 90; })
      .font("Impact")
      .fontSize(function(d) { return d.size; })
      .on("end", draw)
      .start();

  function draw(words) {
    d3.select("body").append("svg")
        .attr("width", 300)
        .attr("height", 300)
      .append("g")
        .attr("transform", "translate(150,150)")
      .selectAll("text")
        .data(words)
      .enter().append("text")
        .style("font-size", function(d) { return d.size + "px"; })
        .style("font-family", "Impact")
        .style("fill", function(d, i) { return fill(i); })
        .attr("text-anchor", "middle")
        .attr("transform", function(d) {
          return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
        })
        .text(function(d) { return d.text; });
  }
</script>
4

2 回答 2

7

您确定已将 d3.cloud.layout.js 放在服务器上的正确文件夹中吗?

我编辑了您的代码以指向确实存在的文件:

<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://gist.github.com/emeeks/3361332/raw/61cf57523fe8cf314333e5f60cc266351fec2017/d3.layout.cloud.js"></script>

它似乎有效:

http://jsfiddle.net/fHBsS/

要查看这是否导致您的问题,请在 chrome (ctrl-shift-j) 中打开控制台并查看是否有任何“加载资源失败”错误。

于 2013-04-03T03:27:21.080 回答
0

这发生在我身上是因为我在 D3 之前加载了云布局 JS。应先加载 D3 进行修复。

于 2019-07-08T17:37:29.950 回答