$httpProvider
ヘッダーを外部に設定する方法はありangular.module('myApp', []).config()
ますか?
ユーザーにログインした後、サーバーからAuth-Tokenを取得しています。これを、後続のすべてのリクエストにHTTPヘッダーとして追加する必要があります。
$httpProvider
ヘッダーを外部に設定する方法はありangular.module('myApp', []).config()
ますか?
ユーザーにログインした後、サーバーからAuth-Tokenを取得しています。これを、後続のすべてのリクエストにHTTPヘッダーとして追加する必要があります。
Angular1.0.xにはデフォルトのヘッダーを使用できます。
$http.defaults.headers.common['Authentication'] = 'authentication';
またはAngular1.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');
});
工場/サービスはシングルトンであるため、サービスがインスタンス化された後に「認証」値を動的に変更する必要がない限り、これは機能します。
$http.defaults.headers.common['Auth-Token'] = 'token';
headers()
キー名を正規化しているようです。
@Guriaと@Pangaの上記の応答に追加
config.headers['X-Access-Token'] = $window.sessionStorage.token;
ヘッダーでx-access-tokenをJWT(jsonwebtoken)として使用できます。ユーザーが最初に認証するときに、JWTをセッションストレージに保存します。