angularjs – 使用Angular JS调用restful API时的跨域问题

前端之家收集整理的这篇文章主要介绍了angularjs – 使用Angular JS调用restful API时的跨域问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试访问一个安静的API.这给出了错误.如何克服这个跨域问题?

错误是’Access-Control-Allow-Origin’标头出现在请求的资源上

function Hello($scope,$http) {

$http.get('http://api.worldweatheronline.com/free/v1/weather.ashx?q=London&format=json&num_of_days=5&key=atf6ya6bbz3v5u5q8um82pev').
    success(function(data) {
        alert("Success");
    }).
    error(function(data){
       alert("Error");
    });
}

这是我的小提琴http://jsfiddle.net/U3pVM/2654/

更好的方法( fiddle example)是使用 $http.jsonp.
var url = 'http://api.worldweatheronline.com/free/v1/weather.ashx';
return $http.jsonp(url,{
    params: {
        callback: 'JSON_CALLBACK',q: 'London',format:'json',num_of_days: 5,key: 'atf6ya6bbz3v5u5q8um82pev'
    }
});

请注意我添加的JSON_CALLBACK查询字符串参数.在幕后角度使用它来为你设置回调.没有它它会破裂.

原文链接:https://www.f2er.com/angularjs/240559.html

猜你在找的Angularjs相关文章