在 Angular 9 中,出现 NullInjectorError: No provider for CompilerFactory
错误通常是因为缺少必要的依赖项或配置错误。
以下是几种可能的解决方法:
npm install @angular/compiler --save
app.module.ts
文件中已经正确导入了 CompilerFactory
:import { CompilerFactory } from '@angular/core';
app.module.ts
文件中已经在 providers
数组中提供了 CompilerFactory
:import { CompilerFactory } from '@angular/core';
@NgModule({
// ...
providers: [
// ...
CompilerFactory,
// ...
],
// ...
})
export class AppModule { }
如果上述解决方法都没有解决问题,可以尝试以下方法之一:
npm cache clean --force
然后重新构建项目:
ng build
ng update @angular/cli
请注意,根据你的项目结构和配置,可能需要根据具体情况进行调整和修改以上解决方法。