我有一个 html 页面试图调用下面的 ajax jquery 调用。如果我将 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);
}
});
}