AngularJS自定义标头请求

时间:2016-09-26 12:02:11

标签: angularjs ionic-framework

我正在构建一个Ionic应用,并尝试为我在应用上执行的每个GET请求设置自定义标头。

这是CustomHeaderController

angular.module('myHeader',[])
.controller('headerCtrl',['customHeader',function(customHeader){
var config = {headers:  {
'Authorization': 'Basic d2VudHdvcnRobWFuOkNoYW5nZV9tZQ==',
'Accept': 'text/html;odata=verbose',
"X-Request-from" : "{{vm.data.os}}" }};
$http.get('http://localhost:8100, config); }])

在我检查页面的那一刻,我没有得到任何自定义标题,只是默认标题。

任何线索?欣赏它!欢呼声。

1 个答案:

答案 0 :(得分:1)

在这种情况下,您需要对每个http请求使用拦截器。

Interceptor Details