以下是我用来访问名为Owner
的Web API控制器的代码; success
函数未被调用。有什么想法吗?
$.ajax({
type: "GET",
url: 'http://localhost:26533/api/Owner',
contentType: "application/json",
dataType: "jsonp",
success: function (response) { alert("yes"); }
});
答案 0 :(得分:1)
删除内容类型和数据类型并检查响应.. 这是一个例子:
$.ajax({
type: 'GET',
url: 'http://localhost:26533/api/Owner',
success: function(data){
alert(data);
},
error: function(xhr, type, exception) {
// if ajax fails display error alert
alert("ajax error response type " + type);
}
});
有了这个,你可以看到错误......