jQuery jsonp即使使用有效的json格式也不会触发成功处理程序

时间:2014-03-12 05:30:57

标签: javascript jquery ajax jsonp

$.ajax({
     url: url,
     dataType: 'jsonp',
     success: function(data) { //not firing at all
       console.log('success');
       console.log(data);
     }
     error: function() {  //always firing even with status 200 & valid JSON response.
    console.log('error');
     }             
});

1 个答案:

答案 0 :(得分:1)

$.ajax({
     url: url,
     dataType: 'jsonp',
     success: function(data) { //not firing at all
       console.log('success');
       console.log(data);
     },                         //You have missed a comma here..
     error: function() {  //always firing even with status 200 & valid JSON response.
    console.log('error');
     }             
});
  • 你错过了一个逗号。
  • 只需查看评论
  • 即可