IIS服务器无法读取JSON文件,MIME映射问题

时间:2015-08-10 12:46:14

标签: json

我想在本地运行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');
		}
	});
}); 

0 个答案:

没有答案