我的AJAX調用是:得到「錯誤:jQuery111306513629604596645_1434294948077未被調用」錯誤時,跨域AJAX調用?
$.ajax({
method: "GET",
contentType: "application/json; charset=utf-8",
url: "http://localhost:8080/viewalldoctorprofile",
dataType: 'jsonp',
crossDomain: true,
success : function(json){
alert("24254");
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
}
});
我可以看到結果JSON在檢查元素在瀏覽器中,但我發現了一個錯誤:
Error: jQuery111306513629604596645_1434294948077 was not called
請幫助我。預先感謝您