如何在nest中制作拦截器,使用文档,进行身份验证。拦截器是一个用 @Injectable() 装饰器注释的类,并实现 NestInterceptor 接口。 拦截器具有一组有用的功能,这些功能受到面向方面编程 (AOP) 技术的启发。
import {Injectable, NestInterceptor, ExecutionContext, CallHandler,} from '@nestjs/common';import { Observable } from 'rxjs';import { tap } from 'rxjs/operators';