$.ajax and JSONP. ParseError and Uncaught SyntaxError: Unexpected token :

前端 未结 3 970
执笔经年
执笔经年 2020-12-09 04:11

First of all, I\'ve been looking for the answer to my problem in several topics and I couldn\'t find a solution that works with my code.

I\'m trying to get the answe

3条回答
  •  天涯浪人
    2020-12-09 04:20

    First off you have a typo in your success parameter; you missed the ending s. Also, when you are performing a JSONP request you need to return your JSON information in JSONP format; which should include the callback token as part of the return string. A sample JSONP string would look likes this:

    yourcallbacktoken({"id":3,"login":"pepe","key":"0D1DBA4BE87E02D43E082F9AA1ECFDEB"})
    

    Take a look at this page for more information on the JSONP specifications: http://devlog.info/2010/03/10/cross-domain-ajax/

提交回复
热议问题