jQuery $ .ajax调用从跨域URL获取RESTful API但它不起作用

时间:2014-05-02 10:58:42

标签: jquery ajax cross-domain jsonp restful-url

错误消息是

  

控制台错误:"未捕获的SyntaxError:意外的令牌:"

     

状态:parseerror,

     

错误:未调用jQuery1110072177085862495_1399027696440

我的ajax电话是:

$.ajax({ 
   crossDomain: true, 
   url: "54.225.213.167/developer-assessment/api",
   dataType:"jsonp", 
   type: "GET" 
})
  .done(function(data, status, xhr){ 
       console.log(data); 
})
  .fail(function(xhr, status, error){ 
       console.log(status); 
       console.log(error); 
);

即使直接调用url的结果是JSON obj。

0 个答案:

没有答案