每次尝试运行python
脚本时,我都试图用我的脚本输出的JSON对象填充网页。我目前正在运行nginx
,并指向我的index.html
。其中具有以下内容:
<html>
<head>
<script type="text/javascript" > </script>
<script>
$.getJSON("result.json", function (data) {
$.each(data, function (index, value) {
console.log(value);
});
});
</script>
</head>
</html>
我的网页上看不到任何内容。我的问题是如何调用getJSON
调用,console.log()
是显示数据的正确方法还是应该使用document.write()
?每次运行脚本来调用此函数以显示最新数据时,我还必须执行nginx reload
吗?