如何在NEST Js中使用Global-interceptor中的Service

时间:2018-05-24 07:58:32

标签: javascript typescript interceptor nestjs

我想在全局拦截器中使用服务。

我的代码看起来像这样:

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>,我无法创建服务对象。

GitHub issue link

1 个答案:

答案 0 :(得分:2)

您可以直接从模块定义注册全局拦截器:

import { Module } from '@nestjs/common';
import { APP_INTERCEPTOR } from '@nestjs/core';

@Module({
  providers: [
    {
      provide: APP_INTERCEPTOR,
      useClass: GlobalInterceptor,
    },
  ],
})
export class ApplicationModule {}

这已列在官方文档here中。