我正在开发一个Web应用程序,为此,我制作了模型,json文件,一个组件以及服务和模拟数据文件。然后在gateway-module.ts中提供DiagnosticsRepository,GatewayDiagnosticsRest,GatewayDiagnosticsService,然后将其进一步导入应用程序mudule.ts中。但是当我运行代码时,我得到了错误。
src / app / gateway / gateway.module.ts(105,15)中的ERROR:错误TS2304: 找不到名称“ DiagnosticsRepository”。 src / app / gateway / gateway.module.ts(105,37):错误TS2304:找不到 名称为“ DiagnosticsRest”。 src / app / gateway / gateway.module.ts(105,53): 错误TS2304:找不到名称'DiagnosticsService
'。
答案 0 :(得分:0)
当您导入要在源-文件夹中开始导入的内容时。
做这样的事情:
从导入{LoaderInterceptorService} './shared/loadinginterceptor.service';
始终从您要导入的地方导入。不要从源文件夹中显式启动。