我想在全局拦截器中使用服务。
我的代码看起来像这样:
import { VariablesService } from '../app/modules/variables/variables.service';
@Interceptor()
export class globalInterceptor implements NestInterceptor {
constructor(private service: VariablesService) {
console.log('contructor running', service); //getting null here
}
并在 server.ts 上首先我正在初始化如下:
app.useGlobalInterceptors(new globalInterceptor())
但是在注入服务后我必须做一些修改,因为globalInterceptor()
const variableService = await app.get<VariablesService>(VariablesService);
app.useGlobalInterceptors(new globalInterceptor(variableService));
现在问题是service
null
是<component :is>
,我无法创建服务对象。
答案 0 :(得分:2)
您可以直接从模块定义注册全局拦截器:
import { Module } from '@nestjs/common';
import { APP_INTERCEPTOR } from '@nestjs/core';
@Module({
providers: [
{
provide: APP_INTERCEPTOR,
useClass: GlobalInterceptor,
},
],
})
export class ApplicationModule {}
这已列在官方文档here中。