天天看点

Angular compiler报的一个错误消息:Component XX is not part of any NgModule错误分析

Error in /turbo_modules/@angular/[email protected]/bundles/compiler.umd.js (29363:23)

Component ProductListComponent is not part of any NgModule or the module has not been imported into your module.

Angular compiler报的一个错误消息:Component XX is not part of any NgModule错误分析

错误分析

app.module.ts里,只import了ProductListComponent,但却未申明到declarations区域内:

Angular compiler报的一个错误消息:Component XX is not part of any NgModule错误分析

添加之后错误消失:

Angular compiler报的一个错误消息:Component XX is not part of any NgModule错误分析

继续阅读