How to read an external local JSON file in JavaScript?

前端 未结 22 1936
醉酒成梦
醉酒成梦 2020-11-22 02:53

I have saved a JSON file in my local system and created a JavaScript file in order to read the JSON file and print data out. Here is the JSON file:

{"res         


        
22条回答
  •  既然无缘
    2020-11-22 02:57

    You cannot make a AJAX call to a local resource as the request is made using HTTP.

    A workaround is to run a local webserver, serve up the file and make the AJAX call to localhost.

    In terms of helping you write code to read JSON, you should read the documentation for jQuery.getJSON():

    http://api.jquery.com/jQuery.getJSON/

提交回复
热议问题