解决“No 'Access-Control-Allow-Origin' header is present on the requested resource.”

前端之家收集整理的这篇文章主要介绍了解决“No 'Access-Control-Allow-Origin' header is present on the requested resource.”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$("#btnGet").bind("click",function () {
            	$.ajax({
                		url: "http://localhost:51571/api/Account/1",type: "GET",dataType:"jsonp",success:function(result) {
                    		alert(result[0].Id+","+result[0].Name+","+result[0].Email);
                		}
            	});
});
指定dataType为jsonp,而不是json即可! 原文链接:/json/289821.html

猜你在找的Json相关文章