我无法在代码中指定的模块中添加文件

时间:2019-04-17 06:16:51

标签: angular-devkit

我正在开发一个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

'。

1 个答案:

答案 0 :(得分:0)

当您导入要在源-文件夹中开始导入的内容时。

做这样的事情:

  

从导入{LoaderInterceptorService}   './shared/loadinginterceptor.service';

始终从您要导入的地方导入。不要从源文件夹中显式启动。