NG6001
错误是 Angular 编译器在检查 NgModule
声明时发现的问题。具体来说,这个错误表示某个类在 NgModule
的 declarations
数组中列出,但它既不是指令(Directive),也不是组件(Component),也不是管道(Pipe)。
Angular 的模块系统(NgModule)通过 declarations
数组来声明模块内部的组件、指令和管道。这样做的好处是:
假设你有一个 Angular 项目,并且在 AppModule
中声明了一个类,但这个类既不是组件、指令也不是管道,那么就会出现 NG6001
错误。
Component
、Directive
或 Pipe
。AppModule
中。Component
、Directive
或 Pipe
。Component
、Directive
或 Pipe
。declarations
数组中正确引用。declarations
数组中正确引用。AppModule
中。AppModule
中。通过以上步骤,你应该能够解决 NG6001
错误,并正确地在 Angular 应用中使用组件、指令和管道。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云