./src/app/component/header.component.ts找不到模块:错误:无法解析'./header.component.html

时间:2019-02-15 05:51:38

标签: angular

当我安装角度组件时,initailly会向我显示默认的角度输出。但是当我创建标头组件时,它会显示showimg这样的错误..请任何人都可以解决我的pbm ..?

我尝试了stackoverflow提供的解决方案,但是它不起作用

tf.tensor

2 个答案:

答案 0 :(得分:0)

如果找不到HTML文件的路径,则可能发生错误。 在您的代码中更改此templateUrl

templateUrl: './header.component.html',

并将您的组件添加到module.ts文件

declarations: [HeaderComponent]

答案 1 :(得分:0)

提供相对路径,而不是绝对路径。

就像您的html位于同一文件夹中一样

templateUrl: `./header.component.html'

代替

templateUrl: `header.component.html`