//这是从我试过的json文件中获取数据的代码。
$(document).ready(function(){
$.ajax({
url: '../json/my_json.json',
type: 'GET',
async: true,
contentType: 'json',
success: function(res){
console.log(res);
},
error: function(status){
console.log(status);
}
});
});