dongsuishou8039 2016-10-05 10:12
浏览 702
已采纳

如何读取本地JSON文件

I am following a tutorial on YouTube but I couldn't make it run. Basically I have a country.json file.and I am trying to retrieve data inside it. What is wrong here??

This is how country.json file looks like

{
  "name": "Germany",
  "capital": "Berlin",
  "pop": "some value"
}

JavaScript

var container = $("div.container");
$("input#get").click(function () {
  $.ajax({
    type: "Get",
    url: "country.json",
    dataType: "json",
    successs: function (data) {
      $.each(data, function (index, item) {
        $.each(item, function (key, value) {
          container.append(key + " : " + value + "</br>");
        });
        container.appendChild("<br/><br>")
      });
    }
  });
});

HTML

<div class="container"></div>
<div id="form-area">
  <h2>Get</h2>
  <input type="submit" id="get" value="get">
</div>
  • 写回答

3条回答 默认 最新

  • dongluanban3536 2016-10-05 10:38
    关注

    You can get it like this:-

    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    
    </head>
    <body>
    <div class="container"></div>
    <div id="form-area">
        <h2>Get</h2>
        <input type="submit" id="get" value="get">
    </div>
    </body>
    </html>
    
     <script type="text/javascript">
    var container = $(".container"); //check change here
    $("#get").click(function () { //check change here
        $.getJSON( "country.json", function( data ) {
           var myhtml = ''; // create an empty variable
            $.each(data, function (key, value) {
                myhtml += key + ' : ' + value + '</br>'; // append data to variable
    
            });
          container.append( myhtml); // append the whole data (variable) to div
        });
    });
    </script>
    

    Output (on my local browser):- http://prntscr.com/cq2jjt

    Note:- to read data from json file $.getJSON() is required.

    Check more detail:- http://api.jquery.com/jquery.getjson/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵