Django d3.js加载JSON数据

时间:2018-04-30 19:17:34

标签: json django d3.js

我正在尝试用d3.js制作直方图。我是javascript和JSON的新手,所以我需要你的帮助。

基本上我在这里尝试使用此代码: How to make a bar chart for time duration with d3?

此处显示的代码与代码中的数据工作正常,但如何引用我的JSON输出数据?

我的JSON数据

urls.py

url(r'^api/playAround', views.playAround, name='playAround'),

view.py

def playAround(request):
data = Customer.objects.annotate(month=TruncMonth('Update')).values('month').annotate(countItems=Count('id')) 
return JsonResponse(list(data), safe=False)

localhost / api / playAround

[
    {
     "month": "2017-10-01",
     "countItems": 16,
    },
    {
     "month": "2018-04-01",
     "countItems": 1,
    },
    {
     "month": "2018-10-01",
     "countItems": 1,
    },
]

我如何更改行

var data =....

我是否已阅读并显示我的JSON数据?

该行

d3.json("{% url "playAround" %}", function(error, data) {}

没用。我想我在d3.js + JSON + javascript

中没有得到一个要点

模板

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.bar {
fill: steelblue;
}

.bar:hover {
fill: brown;
}

.axis--x path {
display: none;
}
</style>
<svg width="960" height="500"></svg>
<script src="/static/js/d3.v5.min.js"></script>
<script>
var svg = d3.select("svg"),
margin = {
  top: 20,
  right: 20,
  bottom: 30,
  left: 40
},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom;

var x = d3.scaleBand().rangeRound([0, width]).padding(0.1),
y = d3.scaleLinear().rangeRound([height, 0]);

var g = svg.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

var data = d3.json("{% url 'playAround' %}", function(error, data) {

x.domain(data.map(function(d) {
return d.month;
}));
y.domain([0, d3.max(data, function(d) {
return d.countItems;
})]);
});

g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));

g.append("g")
.attr("class", "axis axis--y")
.call(d3.axisLeft(y))
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.attr("text-anchor", "end")
.text("Frequency");

g.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d) {
  return x(d.month);
})
.attr("y", function(d) {
  return y(d.countItems);
})
.attr("width", x.bandwidth())
.attr("height", function(d) {
  return height - y(d.countItems);
});

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。与访问代码中的数据相比,访问JSON对象时必须做一件事:

由于您没有数据的全局变量,您必须在d3.json中包含所有域或附加信息。

所以这是相关的代码:

d3.json("{% url "playAround" %}", function(error, data) {   

    .....   // insert here the x./y.domain and g.append information

});

另外,上面的代码仅适用于d3.v4.min.js。