使用AngularJS的{CORS(访问控制 - 允许 - 来源)

时间:2015-11-12 01:39:43

标签: angularjs cors

我正在使用AngularJS app.factory从google maps API返回一个JSON对象,以计算从用户位置到某些点的距离......

我的代码如下

app.factory('dist', function($http){
  return function(start, end)
  {
    return $http({
      method:'GET',
      url: 'https://maps.googleapis.com/maps/api/distancematrix/json',
      params:
      {
        origins: start.lat + ',' + start.lng,
        destinations: end.lat + ',' + end.lng,
        units: 'imperial',
        key: '-'
      }
    });
  };
});

目前,我正在使用chrome“Allow-Control-Allow-Origin”扩展程序,但我需要它才能在没有它的情况下工作,我需要做什么?看到有人说改变.config可能会有所帮助,但似乎对我不起作用......

0 个答案:

没有答案