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

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

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

  1. function Hello($scope,$http) {
  2.  
  3. $http.get('http://api.worldweatheronline.com/free/v1/weather.ashx?q=London&format=json&num_of_days=5&key=atf6ya6bbz3v5u5q8um82pev').
  4. success(function(data) {
  5. alert("Success");
  6. }).
  7. error(function(data){
  8. alert("Error");
  9. });
  10. }

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

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

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

猜你在找的Angularjs相关文章