没有从json得到任何响应

时间:2018-11-30 08:16:42

标签: javascript html json treeview

您好,下面我没有使用Java脚本获取任何响应json。我想将json数据显示为树状视图。

index.html:

    <!DOCTYPE html>
<html>
<head>
    <title>JSON VIEW</title>
    <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
    <link rel="stylesheet" type="text/css" href="jsonview.css">
  <script type="text/javascript" src="/jsonview.js"></script>
</head>
<body>
  <div class="root"></div>

  <script type="text/javascript">
    fetch('example.json')
    .then((res)=> {
      return res.text();
    })
    .then((data) => {
      jsonView.format(data, '.root');
    })
    .catch((err) => {
      console.log(err);
    })
  </script>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

按F12键,从Google Chrome中打开您的开发人员工具,然后在网络XHR中查看发生了什么:)