AJAX成功回调无法正常工作

时间:2014-05-19 20:39:57

标签: javascript jquery ajax

以下是我用来访问名为Owner的Web API控制器的代码; success函数未被调用。有什么想法吗?

 $.ajax({
        type: "GET",
        url: 'http://localhost:26533/api/Owner',
        contentType: "application/json",
        dataType: "jsonp",
        success: function (response) {  alert("yes"); }                  
});

1 个答案:

答案 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);
    }
});

有了这个,你可以看到错误......