每次运行Python脚本时,都将数据加载到HTML页面中

时间:2019-04-16 02:33:35

标签: python html nginx web-development-server

每次尝试运行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吗?

0 个答案:

没有答案