我正在尝试运行一个简单的d3 Javascript程序来可视化图形。我也有这个图的JSON文件。为了让程序运行,我被告知我应该按照以下步骤操作:
1-在终端上,我转到项目所在的文件夹
2-我插入以下命令:python -m SimpleHTTPServer 8888 &
3-在Web浏览器(Firefox)上,我添加了:http://localhost:8888
当我执行第三步时,终端显示以下错误消息:
localhost - - [11/Nov/2013 08:07:23] code 404, message File not found
localhost - - [11/Nov/2013 08:07:23] "GET /D3/sample.json HTTP/1.1" 404 -
这是我的d3 Javascript图表的HTML文件:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<style>
.node {
stroke: #fff;
stroke-width: 1.5px;
}
.link {
stroke: #999;
stroke-opacity: .6;
}
</style>
<body>
<p> Paragraph !!! </p>
<script type="text/javascript" src="d3.v3.js"></script>
<script>
var width = 960,
height = 500;
var color = d3.scale.category20();
var force = d3.layout.force()
.charge(-120)
.linkDistance(30)
.size([width, height]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("sample.json", function(error, graph) {
force
.nodes(graph.nodes)
.links(graph.links)
.start();
var link = svg.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function(d) { return Math.sqrt(d.value); });
var node = svg.selectAll(".node")
.data(graph.nodes)
.enter().append("circle")
.attr("class", "node")
.attr("r", 5)
.style("fill", function(d) { return color(d.group); })
.call(force.drag);
node.append("title")
.text(function(d) { return d.name; });
force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
});
});
</script>
</body>
</html>
似乎无法读取JSON文件sample.json
,因为上面显示的是什么消息。谁能帮助我如何运行该程序并使用我上面提供的命令读取json文件。如果我在该HTML文件中添加标题和段落,它们将会出现,但无法显示图形。 JSON文件的位置是否有任何问题,或d3.v3.js
文件有问题?感谢您的帮助。
`
答案 0 :(得分:1)
根据我的理解,你已经在目录中设置了一个python简单服务器,并且在该目录中你有一个html文件显示在浏览器中。但是,当您尝试运行js代码并加载json文件时,会出现404错误。
错误说是它在名为D3的目录中查找json文件,但是,您的代码正在根目录中查找json。尝试更改
D3.json("sample.json", function(error, graph)
行到
d3.json("D3/sample.json", function(error, graph)
。
此外,在函数调用位置console.log(graph)
内部,如下所示:
d3.json("sample.json", function(error, graph) {
console.log(graph)
这会将输出发送到您的控制台,以便您可以查看正在读取的内容(如果您已经知道,请道歉)。