javascript - 为什么此图表 d3.js 不能与 require.js 一起使用?

标签 javascript d3.js requirejs

我制作了一个饼图并尝试使用 require.js 将其显示在页面上,但无法正确执行。 Firebug显示该页面上有一定大小的svg,并且该页面是空的。我尝试实现其他的 modules - 它们运行良好。

文件main.js:

require.config({
paths: {
    'd3': "http://d3js.org/d3.v3.min"
},
shim: {
    'd3': {exports:'d3'}
}
});

require([

  'd3',
  'pie-chart'

    ], function (d3, piechart) {
        d3.select("body").append("h1").text("Successfully loaded D3 version " + d3.version);
        d3.select("body").append("svg");
});

文件饼图.js:

define('pie-chart', function () {

var width = 960,
    height = 500,
    radius = Math.min(width, height) / 2;

var legendRectSize = 18; 

var legendSpacing = 4; 

var color = d3.scale.ordinal()
    .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]);

var percentageFormat = d3.format("%");

var arc = d3.svg.arc()
    .outerRadius(radius - 10)
    .innerRadius(0);

var pie = d3.layout.pie()
    .sort(null)
    .value(function(d) {
        return d.values;
});

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height)
    .append("g")
    .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");

d3.json("staff.json", function(error, json_data) {

var data = d3.nest()
    .key(function(d) {
      return d.Position;
})
    .rollup(function(d) {
      return d.length;
}).entries(json_data);

data.forEach(function(d) {
d.percentage = d.values / json_data.length;
});

console.log(data)
console.log("data variable", data);
console.log("pie(data)", pie(data));

var g = svg.selectAll(".arc")
    .data(pie(data))
    .enter().append("g")
    .attr("class", "arc")
    .on('mouseover', function() {
        var current = this;  
        var others = svg.selectAll(".arc").filter(function(el) {
            return this != current
  });
  others.selectAll("path").style('opacity', 0.8);
})
    .on('mouseout', function() {
        var current = this;
        d3.select(this)
    .style('opacity', 1);
    var others = svg.selectAll(".arc").filter(function(el) {
    return this != current
  });
  others.selectAll("path").style('opacity', 1);
});


g.append("path")
    .attr("d", arc)
    .style("fill", function(d, i) {
        return color(d.data.key);
});

g.append("text")
    .attr("transform", function(d) {
        return "translate(" + arc.centroid(d) + ")";
})
    .attr("dy", ".35em")
    .style("text-anchor", "middle")
    .text(function(d) {
        console.log("d is", d);
        return percentageFormat(d.data.percentage);
});

var legend = d3.select("body").append("svg")
    .attr("class", "legend")

    .selectAll("g")
    .data(data)
    .enter().append("g")
    .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; });

legend.append("rect")
    .attr("width", 18)
    .attr("height", 18)
    .style("fill", function(d, i) {
return color(d.key);
});

legend.append("text")
    .attr("x", 24)
    .attr("y", 9)
    .attr("dy", ".35em")
    .text(function(d) { return d.key; });                   
});
});

文件 d3.js 我这样包装:

define('d3', function () {
  // require.js code
});

最佳答案

d3 不依赖于 JQuery。我从你的 plunk 中删除了 jquery,你也不需要 shim 属性。你的 main.js 应该是这样的:

require.config({
    paths: {
        'd3': "https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.9/d3.min"
    }
});
require([
    'd3',
    'pie-chart'
    ], function ( d3, $, piechart) {

});

这是工作链接:http://plnkr.co/edit/Le4tpejMvPxLA08isacW?p=preview

关于javascript - 为什么此图表 d3.js 不能与 require.js 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33913788/

相关文章:

javascript - 关于 requirejs 动态加载模块的建议或在我的情况下使用优化/捆绑工具

javascript - 根据vue js中的父元素动态添加表单元素

javascript - 麻烦切换类(jquery)

javascript - D3plus未定义

javascript - D3堆栈布局问题

javascript - 在 firefox xul 扩展中使用 requirejs

javascript - 确保从未使用表单输入字段开头的 =

javascript - 如何 trim 对象值并以新对象返回?

javascript - D3 : Resizing x axis and repositioning circles

javascript - 如何消除由相对路径引起的重复要求?