angular $http Jsonp 怎么才能处理json数据的response?


代码:
$http.jsonp("https://request.address.json)


 .success(
    function(data, status, header, config){
        $scope.list = data;
        alert(data);
    }
)
.error(
    function(data){
        alert("error");
    }
);

请求回来提示:
Uncaught SyntaxError: Unexpected token :

但是通过浏览器查看请求,可以看出返回的数据是json Data,而不是jsonp Data

求解怎么才能使angular 跨域请求 json格式的数据
(不要和我说什么在URL加callback,那是处理jsonp数据才使用的参数)

http jsonp json angularjs

无爱D飞鱼 9 years, 1 month ago

看不懂 你返回数据 data节点不就是数据吗

Nemo夜愿 answered 9 years, 1 month ago

请求的url需要加上&callback=JSON_CALLBACK,这需要服务端配合设置返回jsonp的格式。这样才能早回调里面正确获取。

kpkp123 answered 9 years, 1 month ago

jsonp需要服务端配合的,你这个应该是服务端没有做jsonp格式返回

洒家有礼了 answered 9 years, 1 month ago

$http.get("xxxxx")

嫦娥镇№倩 answered 9 years, 1 month ago

Your Answer