在 AngularJS 中设置应用程序范围的 HTTP 标头

IT技术 javascript mvvm angularjs
2021-03-22 19:21:08

有没有办法在$httpProvider外面设置标题angular.module('myApp', []).config()

登录用户后,我从服务器获取了一个 Auth-Token,我需要将它作为 HTTP 标头添加到所有后续请求中。

3个回答

您可以为 angular 1.0.x使用默认标头

$http.defaults.headers.common['Authentication'] = 'authentication';

或为 angular 1.1.x+请求拦截器

myapp.factory('httpRequestInterceptor', function () {
  return {
    request: function (config) {

      // use this to destroying other existing headers
      config.headers = {'Authentication':'authentication'}

      // use this to prevent destroying other existing headers
      // config.headers['Authorization'] = 'authentication';

      return config;
    }
  };
});

myapp.config(function ($httpProvider) {
  $httpProvider.interceptors.push('httpRequestInterceptor');
});

由于工厂/服务是单例,只要您不需要在服务实例化后动态更改“身份验证”值,这就会起作用。

将 $httpProvider 注入挂在应用程序module之外的配置方法中。提供者是在服务被 Angular 注入控制器等之前配置服务的一种方式。
2021-04-25 19:21:08
@AakilFernandes 这只是一个配置。您可以直接注入 $http。
2021-04-25 19:21:08
我喜欢这是一项服务。谢谢!
2021-05-08 19:21:08
有点糊涂。如何将其集成到我的应用程序中?我是否需要将其列为依赖项然后使用$httpProvider而不是$http
2021-05-09 19:21:08
这很奇怪。当我使用 $http.defaults.headers.common 时,我收到错误 405(不允许的方法)。我不确定这里的问题是否是 webapp2。
2021-05-14 19:21:08
$http.defaults.headers.common['Auth-Token'] = 'token';

它似乎headers()规范了键名。

您能否详细说明规范化键名的含义?
2021-04-24 19:21:08
@lucassp 可能是这个 - stackoverflow.com/questions/5258977/...
2021-05-09 19:21:08
使用 headers() 方法获取标头时,密钥“Auth-Token”将变为小写并变为“auth-token”。这是令人困惑的。
2021-05-18 19:21:08

添加到@Guria 和@Panga 的上述回复

config.headers['X-Access-Token'] = $window.sessionStorage.token;

可以在标头中使用 x-access-token 作为 JWT(jsonwebtoken)。当用户第一次进行身份验证时,我将 JWT 存储在会话存储中。