django バックエンドで d3.js ビジュアライゼーションを作成しようとしています。
私はいくつかのjsonをマップにレンダリングしようとしています:
d3.json("world-countries.json", function(json) {
self.countries.selectAll("path")
.data(json.features)
.enter().append("path")
.attr("d", self.path)
.on("mouseover", function(d) {
d3.select(this).style("fill","#6C0");})
.on("mouseout", function(d) {
d3.select(this).style("fill","#000000");})
});
しかし、私はエラーが発生し続けます:
Uncaught TypeError: Cannot read property 'features' of null
Django を介して json オブジェクトにアクセスする方法がわかりません。誰かアイデアはありますか?