为一个请求设置HTTP标头

我在我的应用程序中有一个特定的请求需要基本身份validation,所以我需要设置该请求的授权标头。 我读了关于设置HTTP请求标头 ,但从我可以告诉,它将为该方法的所有请求设置头。 我在我的代码中有这样的东西:

$http.defaults.headers.post.Authorization = "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="; 

但我不希望每一个我的发布请求发送这个头。 有没有什么办法只为我想要的一个请求发送标题? 或者我必须在我的请求后删除它?

在传递给每个呼叫标头的$http的config对象中有一个headers参数:

 $http({method: 'GET', url: 'www.google.com/someapi', headers: { 'Authorization': 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='} }); 

或者用快捷方式:

 $http.get('www.google.com/someapi', { headers: {'Authorization': 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='} }); 

$ http服务文档中提供了有效参数的列表。

尝试这个,也许它工作;)

 .factory('authInterceptor', function($location, $q, $window) { return { request: function(config) { config.headers = config.headers || {}; config.headers.Authorization = 'xxxx-xxxx'; return config; } }; }) .config(function($httpProvider) { $httpProvider.interceptors.push('authInterceptor'); }) 

并确保你的后端工作,试试这个。 我正在使用RESTful CodeIgniter。

 class App extends REST_Controller { var $authorization = null; public function __construct() { parent::__construct(); header('Access-Control-Allow-Origin: *'); header("Access-Control-Allow-Headers: X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Request-Method, Authorization"); header("Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE"); if ( "OPTIONS" === $_SERVER['REQUEST_METHOD'] ) { die(); } if(!$this->input->get_request_header('Authorization')){ $this->response(null, 400); } $this->authorization = $this->input->get_request_header('Authorization'); } }