我需要.json
从本地主机读取文件,但它没有用!
该文件的内容如下:
[
{"source":"tw1",
"text":"fubar"},
{"source":"tw2",
"text":"foo"}
]
我使用以下命令设置了 localhost :,这里python -m http.server 8888 &
发布了D3.js。
我编写了以下 javascript 代码:
<script type="text/javascript" src="lib/jquery-1.9.1.js"></script>
<script>
$(document).ready(
$.getJSON("http://localhost/test.json", function(data){
document.write(data);
});
</script>