有没有一种方法可以在App.Module.ts中使用configService?

时间:2019-02-05 13:46:54

标签: javascript node.js typescript nestjs typeorm

我正在使用NestJs构建RESTful服务,我遵循example来为不同环境构建配置。它适用于大多数代码。但是我想知道是否可以在我的app.module.ts中使用它?

@Module({
  imports: [
    TypeOrmModule.forRoot({
      type: 'mongodb',
      host: `${config.get('mongo_url') || 'localhost'}`,
      port: 27017,
      username: 'a',
      password: 'b',
      database: 'my_db',
      entities: [__dirname + '/MyApp/*.Entity{.ts,.js}'],
      synchronize: true}),
    MyModule,
    ConfigModule,
  ],
  controllers: [],
  providers: [MyService],
})
export class AppModule { }

如您所见,我确实希望将MongoDb Url信息移出代码之外,并且我正在考虑利用.env文件。但是经过一些尝试,它似乎不起作用。

我当然可以改用${process.env.MONGODB_URL || 'localhost'}并设置环境变量。我仍然很好奇我能否使configService正常工作。

1 个答案:

答案 0 :(得分:2)

您必须使用dynamic import(请参阅异步配置)。有了它,您可以注入依赖项并将其用于初始化:

TypeOrmModule.forRootAsync({
  imports: [ConfigModule],
  useFactory: (configService: ConfigService) => ({
    type: 'mongodb',
    host: configService.databaseHost,
    port: configService.databasePort,
    username: configService.databaseUsername,
    password: configService.databasePassword,
    database: configService.databaseName,
    entities: [__dirname + '/**/*.entity{.ts,.js}'],
    synchronize: true,
  }),
  inject: [ConfigService],
}),