我有一个如图所示的目录结构
https://i.stack.imgur.com/yitTd.png
当我在app.component.html]中使用<app-news-card>
选择器时,它显示找不到当前模块中不存在的<app-news-card>
的错误。
我应该如何以最实用的方式解决此问题。
当前:我是
1。)从news.module
中导出news-card.component2。)然后我在current.module中导入了NewsModule
,并重新导出了NewsModule3。),然后在app.module
中导入了CurrentModule我有一个目录结构,如图所示https://i.stack.imgur.com/yitTd.png当我在app.component.html中使用
请确保在news card
的声明中包含news.module
组件。例如:
@NgModule({
declarations: [NewsCardComponent],
imports: [...],
exports: [NewsCardComponent]
})