如何在nest中编写拦截器

问题描述 投票:0回答:1

如何在nest中编写拦截器、使用文档、进行身份验证。拦截器是一个用

@Injectable()
装饰器注释的类,并实现
NestInterceptor
接口。

拦截器具有一组有用的功能,这些功能受到面向方面编程(AOP)技术的启发。

authentication nest interceptor
1个回答
0
投票
import {Injectable,  NestInterceptor,  ExecutionContext,  CallHandler,} from '@nestjs/common';import { Observable } from 'rxjs';import { tap } from 'rxjs/operators';
© www.soinside.com 2019 - 2024. All rights reserved.