未读取本地主机JSON文件

时间:2018-08-01 22:41:05

标签: javascript html json localhost

我正在尝试从本地主机JSON文件传递数据。但是,它不起作用。按下获取JSON数据按钮时,不会打印任何内容。为什么会这样呢?

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $.getJSON("localhost:8001/count", function(result){
            $.each(result, function(i, field){
                $("div").append(field + " ");
            });
        });
    });
});
</script>
</head>
<body>

<button>Get JSON data</button>

<div></div>

</body>
</html>

1 个答案:

答案 0 :(得分:0)

尝试像这样http://添加$.getJSON("http://localhost:8001/count", function(result){

对我有用