AngularJS 用 $http.jsonp 跨域SyntaxError问题

 

必须添加参数:callback=JSON_CALLBACK , 才能进success方法,如下:

$http.jsonp("https://request.address.json?callback=JSON_CALLBACK")
    .success(
        function(data, status, header, config){
            $scope.list = data;
            alert(data);
        }
    )
    .error(
        function(data){
            alert("error");
        }
    );

  

posted @ 2017-09-13 09:57  庞国明  阅读(326)  评论(0编辑  收藏  举报