NestJS - 在拦截器中使用服务(不是全局拦截器)

NestJS - Use service inside Interceptor (not global interceptor)

我有一个使用自定义拦截器的控制器:

控制器:

@UseInterceptors(SignInterceptor)
    @Get('users')
    async findOne(@Query() getUserDto: GetUser) {
        return await this.userService.findByUsername(getUserDto.username)
    }

我也有 SignService,它是 NestJwt 的包装器:

签名服务模块:

@Module({
    imports: [
        JwtModule.registerAsync({
            imports: [ConfigModule],
            useFactory: async (configService: ConfigService) => ({
                privateKey: configService.get('PRIVATE_KEY'),
                publicKey: configService.get('PUBLIC_KEY'),
                signOptions: {
                    expiresIn: configService.get('JWT_EXP_TIME_IN_SECONDS'),
                    algorithm: 'RS256',
                },
            }),
            inject: [ConfigService],
        }),
    ],
    providers: [SignService],
    exports: [SignService],
})
export class SignModule {}

最后是 SignInterceptor:

@Injectable()
export class SignInterceptor implements NestInterceptor {
    intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
        return next.handle().pipe(map(data => this.sign(data)))
    }

    sign(data) {
        const signed = {
            ...data,
            _signed: 'signedContent',
        }

        return signed
    }
}

SignService 工作正常,我正在使用它。我想用它作为拦截器 如何将 SignService 注入到 SignInterceptor 中,以便我可以使用它提供的功能?

我假设 SignInterceptorApiModule 的一部分:

@Module({
  imports: [SignModule], // Import the SignModule into the ApiModule.
  controllers: [UsersController],
  providers: [SignInterceptor],
})
export class ApiModule {}

然后将SignService注入SignInterceptor:

@Injectable()
export class SignInterceptor implements NestInterceptor {
  constructor(private signService: SignService) {}

  //...
}

因为你使用 @UseInterceptors(SignInterceptor) 在你的控制器中使用拦截器 Nestjs 将为你实例化 SignInterceptor 并处理依赖项的注入。