前端
后端部分
通用
Appearance
@Module()
想要在其他模块中使用,需要添加export
export
@Module({ providers: [TestService], export: true })
export: true 表示全部 providers 都导出, export: [TestService] 表示只有 TextService 导出,可以提供给其他模块使用
export: true
export: [TestService]