weixin_33714884 2017-06-06 08:00 采纳率: 0%
浏览 59

跨域ajax无法正常工作

I am having a problem while using cross-origin ajax.

I know it's a common question but did not get any solution for it yet.

$.ajax({    
  type: "GET",
  url: url,
  data: {id:id},
  dataType: "jsonp",
  crossDomain: true,  
  contentType: "application/jsonp; charset=utf-8",
  async: false,
  success: fnsuccesscallbackk,
  error: function(xhr, error){
    alert(error);
  },
  jsonpCallback: fnsuccesscallback   
});

function fnsuccesscallback(data){
  alert(data)
}

…but getting undefined response in callback function.

Is there anything wrong what I am doing.

  • 写回答

1条回答 默认 最新

  • 普通网友 2017-06-06 12:08
    关注

    After a lots of RND finally i got the solution of this.

    Ajax function:
    $.ajax({    
            type:"GET",
            url:'https://www.url.com/welcome/test_js',
            data:{name:'xyz'},
            crossDomain:true,
            dataType: "jsonp",
            jsonp: 'fnsuccesscallback',
             success: function(data) {
                  alert(data.name)
            }
    });
    
    
    In the Php function:
    function test_js() {
        echo $_GET['fnsuccesscallback'] . "(" . json_encode($_GET) . ")";
    }
    
    评论

报告相同问题?