使用AngularJS $ location并设置Header

时间:2015-05-11 13:25:44

标签: angularjs

我正在尝试重新连接到我服务器上的其他网站。

目前使用$location.url('http://127.0.0.1/second');转发到第二个网站,但我需要将Authorization标头设置为自定义变量。

我搜索了docs.angularjs.org上的$http$location文档,但我找不到任何有用的信息。

1 个答案:

答案 0 :(得分:1)

实际上您可以使用$http;

$http({method: 'GET', url: 'http://127.0.0.1/second', headers: {
    'Authorization': 'Basic Key'}
});

更多INFO ...