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数据才使用的参数)
无爱D飞鱼
9 years, 1 month ago