$httpProvider.interceptors.push(['$rootScope', '$q', '$localStorage', function ($rootScope, $q, $localStorage) {
      return {
        request: function (config) {

          // Header - Token
          config.headers = config.headers || {};
          if ($localStorage.token) {
            config.headers.token = $localStorage.token;
          };
          
          return config;
        },

        response: function (response) {

          if (response.status == 200) {
            // console.log('do something...');
          }
          
          return response || $q.when(response);
        },

        responseError: function (response) {
        
          return $q.reject(response);
        }
      }
    }])

基于这样的问题:

想使用angularjs里的htpp向后台发送请求,后台是基于tornado的,现在有个用户唯一识别的token想要放到headers里面去,也就是{headres:{'token':1}},但是尝试了很多方法不行,想问下应该怎么做,后台需不需要设置一些什么东西,多谢

上面是参考解决方法之一

 

相关文章:

  • 2021-12-07
  • 2021-12-02
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
  • 2021-11-15
  • 2022-12-23
猜你喜欢
  • 2022-02-01
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2021-07-16
  • 2022-12-23
  • 2021-10-17
相关资源
相似解决方案