Angular의 인터셉터(인증, 캐싱, 로깅, 오류 처리)
응답이 백엔드에서 도착하면 인터셉터는 응답을 애플리케이션에 전달하기 전에 변환할 수 있습니다.
HTTP 인터셉터의 주요 이점 중 하나는 모든 요청에 Authorization Header를 추가하는 것입니다. 이 작업을 수동으로 수행할 수 있지만 작업이 많고 오류가 발생하기 쉽습니다. 또 다른 이점은 요청에 의해 생성된 오류를 포착하고 기록하는 것입니다.
HttpInterceptor 인터페이스를 구현하는 Injectable 서비스를 생성하므로 Intercept 메서드를 구현해야 합니다.
@Injectable() export class DemoHttpInterceptor implements HttpInterceptor {
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
//do whatever you want with the HttpRequest
return next.handle(req);
}
그런 다음 루트 모듈에 클래스를 추가하십시오.
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: DemoHttpInterceptor,
multi: true
}
],
Http 인터셉터를 사용한 기본 인증 예제
import { Injectable } from '@angular/core';
import {
HttpRequest,
HttpHandler,
HttpEvent,
HttpInterceptor
} from '@angular/common/http';
import { Store } from '@ngxs/store';
import { Observable } from 'rxjs';
import { AuthState } from '../../store/auth.state';
@Injectable()
export class AuthInterceptor implements HttpInterceptor {
constructor(private authService: AuthService) {}
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(this.addAuthToken(request));
}
addAuthToken(request: HttpRequest<any>) {
const token = this.authService.getAuthToken();
return request.clone({
setHeaders: {
Authorization: `Basic ${token}`
}
})
}
}
Reference
이 문제에 관하여(Angular의 인터셉터(인증, 캐싱, 로깅, 오류 처리)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/parthshukla/interceptors-in-angular-authentication-caching-logging-error-handling-13j4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)