ajax jQuery.getJSON 和fetch()加载json文件

2022-04-01 21:10:20 浏览数 (1)

ajax getJSON用例:

代码语言:javascript复制
$.getJSON('./'   mapCode   '.json',
      function (data) {
      if (data) {
          console.log(data);
      }
    })

fetch用法:

代码语言:javascript复制
fetch('./data/'   mapCode   '.json', {
        method: 'GET',
        mode: 'cors',// 允许发送跨域请求
        credentials: 'include'
    }).then(function (response) {
        //打印返回的json数据
        response.json().then(function (data) {
            if (data) {
                console.log(data);
            }
        });
    }

0 人点赞