为一个请求设置 HTTP 头

我的应用程序中有一个特定的请求需要基本身份验证,所以我需要为该请求设置 Authorization 标头。我读过关于 设置 HTTP 请求头的内容,但是从我所知道的来看,它将为该方法的所有请求设置头部。我的代码中有这样的东西:

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

但是我不希望我的每个帖子请求都发送这个标题。有没有办法只为我想要的一个请求发送头文件?还是要我提出要求后才能摘除?

307146 次浏览

传递给 $http的 config 对象中有一个 Header 参数,用于每次调用的 Header:

$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');
}


}