安装后无法导入 MaterialTimeControlModule

Cannot import MaterialTimeControlModule after installation

我正在尝试在 Angular 下安装 https://github.com/SteveDunlap13/MaterialTimeControl 6. 安装成功,没有错误,但我仍然无法导入 MaterialTimeControlModule

我只能在 node_modules/ 中看到,这是唯一未标记为 "orange" 的目录,所以我想这意味着有问题?

我在这里遗漏了什么,或者这可能是由于我最近从 Angular 5 更新到 Angular 6?

正如您在问题下的评论中所写:

I am following this stackblitz example. I add it to my imports in my app.module.ts

如您所见,在该示例中,在 app.module.ts 中有 import MaterialTimeControlModule from... SRC 目录(不是 node_modules)!

这意味着您应该在您的 SRC 目录中创建类似的 materia-time-control.module.ts 文件,并以类似的方式将其导入 app.module.ts。您可能还应该创建类似的 src/time-control 目录(可能会有一些本地更改,具体取决于您的特定项目)。