实例代码:
function readJSON(file, callback) {
let ajax = new XMLHttpRequest();
ajax.overrideMimeType("application/json");
ajax.open("GET", file, true);
ajax.onreadystatechange = function() {
if (ajax.readyState === 4 && ajax.status == "200") {
callback(ajax.responseText);
}
}
ajax.send(null);
}
readJSON("./json/data.json", function(res){
let data = JSON.parse(res);
console.log(data);
});
本地测试时请开启本地服务,readJSON的第一个参数是json文件的路径,第二个参数是回调函数。