使用jquery ajax的跨域请求返回成功但在错误处理程序中

时间:2014-05-12 09:23:08

标签: jquery ajax cross-domain

以下是我提出跨域请求的代码。它进入错误处理程序,但表示状态为成功且状态为200。

jQuery.support.cors = true;
$.ajax({
    url: url1,
        type: 'GET',
dataType: 'jsonp',
crossDomain:true,
cache: false,
success: function(res) {
     console.dir(res);
},
error: function(err){
     console.dir(err); //It goes here and abong other statusText: succes and status: 200
      }
});

0 个答案:

没有答案