以下のajax jquery呼び出しを呼び出そうとするhtmlページがあります。URL をブラウザに入力すると、データが返されます。最初のアラートが機能し、R IN が表示されます。成功時のアラートがポップアップすることはなく、エラー アラートに移動します。私のコードに何か問題がありますか?
function GetAllStaff() {
alert('we R IN');
$.ajax({
type: "GET",
url:"http://MyServer/MyService/api/StaffSearch/GetAllStaff",
data: "{}",
contentType: "application/json; charset=utf-8",
cache: false,
dataType: "json",
success: function(data) {
alert('hello world');
},
error: function(msg) {
alert('This is the error: ' + msg.d);
}
});
}