How to read an external local JSON file in JavaScript?

前端 未结 22 1855
醉酒成梦
醉酒成梦 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 03:20

    Depending on your browser, you may access to your local files. But this may not work for all the users of your app.

    To do this, you can try the instructions from here: http://www.html5rocks.com/en/tutorials/file/dndfiles/

    Once your file is loaded, you can retrieve the data using:

    var jsonData = JSON.parse(theTextContentOfMyFile);
    

提交回复
热议问题