如何从本地文件中读取Json

时间:2018-06-12 23:48:53

标签: javascript html json web

我使用inspect进行检查,它显示如下: lottie.js:3无法加载文件:///Users/Downloads/ani/js/data.json:交叉源请求仅支持协议方案:http,数据,chrome,chrome-extension,https。

我不知道如何从本地服务器上的.json文件中读取Json? 有人可以帮我解决吗?

var animation = bodymovin.loadAnimation({
  container: document.getElementById('Ani'),
  renderer: 'svg',
  loop: true,
  autoplay: true,
  path: 'js/data.json'
})
<!DOCTYPE html>
<html>
<head>
  
  <!--  Meta  -->
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Bodymovin Demo</title>
  <!--  Styles  -->
  <style>
   #Ani{max-width: 800px; margin:0 auto;}
  </style>
  
</head>
<body>
  
  <div id="Ani"> </div>
  
<!-- Scripts -->
<script src="js/lottie.js"></script>
<script src="js/script.js"></script>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

您正在使用file协议打开文件,并尝试Ajax请求。那不行。您最好通过服务器打开文件。你可以使用apache或任何网络服务器?例如,如果您熟悉Node,则可以使用http-server  或使用lite-server

npm install http-server -g
http-server 'path/to/your/project' -o

如果8080不可用,那么应该打开浏览器窗口:localhost:8080或其他端口