最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery .ajax() with jsonp not invoking success callback function - Stack Overflow

programmeradmin1浏览0评论

I have a facebook iframe application that makes a cross domain request to my server and requests data in JSONP format. This is my client side code:

jQuery.ajax({
                url: '***',
                type: 'post',
                data: {
                    method: 'set_user_prizes'
                },
                dataType: 'jsonp',
                jsonp: false,
                jsonpCallbackString: 'callback123',
                success: function(data, textStatus, jqXHR){
                    console.log('success_function');
                    console.log(data);
                }
});

The problem is my success callback method isn't being invoked and I'm not sure why. Using Firebug I can see my server's response:

callback123({"success":true,"associated_prizes":[{"prizes_id":"6"},{"prizes_id":"1"}]})

I have a facebook iframe application that makes a cross domain request to my server and requests data in JSONP format. This is my client side code:

jQuery.ajax({
                url: '***',
                type: 'post',
                data: {
                    method: 'set_user_prizes'
                },
                dataType: 'jsonp',
                jsonp: false,
                jsonpCallbackString: 'callback123',
                success: function(data, textStatus, jqXHR){
                    console.log('success_function');
                    console.log(data);
                }
});

The problem is my success callback method isn't being invoked and I'm not sure why. Using Firebug I can see my server's response:

callback123({"success":true,"associated_prizes":[{"prizes_id":"6"},{"prizes_id":"1"}]})
Share Improve this question asked Sep 12, 2011 at 17:37 Casey FlynnCasey Flynn 14k26 gold badges108 silver badges196 bronze badges 3
  • 3 Why are you passing jsonp: false? – SLaks Commented Sep 12, 2011 at 17:40
  • @Slaks, I'm using codeigniter with my project. Codeigniter destroys GET data, so therefore I can't use the "&callback=" segment of the url if jquery appends it – Casey Flynn Commented Sep 12, 2011 at 17:42
  • @Dmitriy Naumov, no I am making a cross-domain request – Casey Flynn Commented Sep 12, 2011 at 17:43
Add a ment  | 

2 Answers 2

Reset to default 6

Remove the word String from the callback key as is illustrated in the following transformation. The value needs to remain a string.

Change:

jsonpCallbackString: 'callback123',

to

jsonpCallback: 'callback123',

The correct answer is

jsonpCallback: 'callback123'
发布评论

评论列表(0)

  1. 暂无评论