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);
}
});
}