How can I link external json file in JSFiddle?

后端 未结 6 1535
北荒
北荒 2021-02-06 07:33
  • I have a very long .json file country.json.

[
  {
    "name": "WORLD",
    "population": 6916183000         


        
6条回答
  •  感动是毒
    2021-02-06 08:17

    You can also put this json in a file on your server and load it using script tag.

    
    

    And load this file before the script in which you are using it.

    my.js

    var myJson = [{.....}]; // My long json
    

提交回复
热议问题