Skip to content

模块 @Module()

模块共享服务

想要在其他模块中使用,需要添加export

ts
@Module({
  providers: [TestService],
  export: true
})

export: true 表示全部 providers 都导出, export: [TestService] 表示只有 TextService 导出,可以提供给其他模块使用