我想在本地运行JSOn文件,但无法运行该文件。尝试访问该文件时显示MIME映射问题,其中js文件运行。
Plz帮助我在本地驱动器上运行JSON文件。
$(document).ready(function(){
$.ajax({
type : 'GET',
url : 'http://172.16.9.156/w/myTutorials.json',
dataType : 'json',
contentType : 'application/json',
success: function (response) {
obj = JSON.parse(text);
document.getElementById("id01").innerHTML = obj.employees[1].firstName + " " + obj.employees[1].lastName;
},
error : function(response){
console.log(response);
alert('error');
}
});
});