要使用Angular2-jwt拦截请求的API路由,你需要遵循以下步骤:
安装Angular2-jwt库:
npm install angular2-jwt
在你的Angular应用程序中,创建一个名为auth.service.ts
的服务文件,用于处理身份验证和拦截请求。
import { Injectable } from '@angular/core';
import { JwtHelperService } from '@auth0/angular-jwt';
import { HttpClient, HttpHeaders } from '@angular/common/http';
@Injectable()
export class AuthService {
constructor(public jwtHelper: JwtHelperService, private http: HttpClient) { }
public isAuthenticated(): boolean {
const token = localStorage.getItem('token');
return !this.jwtHelper.isTokenExpired(token);
}
public login(username: string, password: string) {
return this.http.post('https://example.com/login', { username, password });
}
public getAuthHeaders(): HttpHeaders {
const token = localStorage.getItem('token');
return new HttpHeaders().set('Authorization', `Bearer ${token}`);
}
}
此服务包含了isAuthenticated
方法用于检查用户是否已经登录,login
方法用于发送登录请求,和getAuthHeaders
方法用于获取包含身份验证令牌的请求头。
在你的应用程序的根模块(通常是app.module.ts
)中添加以下代码,以配置JwtHelperService
:
import { JwtModule } from '@auth0/angular-jwt';
export function tokenGetter() {
return localStorage.getItem('token');
}
@NgModule({
imports: [
// ...
JwtModule.forRoot({
config: {
tokenGetter: tokenGetter
}
})
],
// ...
})
export class AppModule { }
这将配置JwtHelperService
使用localStorage
中的token
作为身份验证令牌。
在你的API请求中,使用getAuthHeaders
方法获取包含身份验证令牌的请求头。
import { AuthService } from './auth.service';
@Injectable()
export class ApiService {
constructor(private authService: AuthService, private http: HttpClient) { }
public get(url: string) {
const headers = this.authService.getAuthHeaders();
return this.http.get(url, { headers });
}
public post(url: string, data: any) {
const headers = this.authService.getAuthHeaders();
return this.http.post(url, data, { headers });
}
}
在这个示例中,ApiService
使用getAuthHeaders
方法获取请求头,并将其包含在所有API请求中。
现在,你可以通过调用AuthService
中的isAuthenticated
方法来检查用户是否已经登录,然后使用ApiService
中的方法发送包含身份验证令牌的API请求。
注意:上述代码示例假设你已经正确地设置了身份验证和登录端点,并且服务器将返回一个包含身份验证令牌的响应。为了完整性,你需要适应你自己的应用程序和服务器端点。