我正在通过 Angular 的升级指南学习如何将 AngularJS 组件嵌入到 Angular 应用程序中。我使用Angular CLI创建了一个简单的 Angular 应用程序,并添加了一个简单的 AngularJS 模块作为依赖项。
当我运行ng serve
时,应用程序编译没有错误。但是,在运行时,我在控制台中收到此消息:
Error: Trying to get the AngularJS injector before it being set.
是什么导致了这个错误,我该如何避免它?我没有偏离升级指南中详述的步骤。
以下是我在 Angular 应用程序中升级 AngularJS 组件的方式:
// example.directive.ts
import { Directive, ElementRef, Injector } from '@angular/core';
import { UpgradeComponent } from '@angular/upgrade/static';
// this is the npm module that contains the AngularJS component
import { MyComponent } from '@my-company/module-test';
@Directive({
selector: 'my-upgraded-component'
})
export class ExampleDirective extends UpgradeComponent {
constructor(elementRef: ElementRef, injector: Injector) {
// the .injectionName property is the component's selector
// string; "my-component" in this case.
super(MyComponent.injectionName, elementRef, injector);
}
}
这是我的app.module.ts
:
// app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { UpgradeModule } from '@angular/upgrade/static';
import { ExampleDirective } from './example.directive';
import { myModuleName } from '@my-company/module-test';
@NgModule({
declarations: [AppComponent, ExampleDirective],
imports: [BrowserModule, AppRoutingModule, UpgradeModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
constructor(private upgrade: UpgradeModule) {}
ngDoBootstrap() {
this.upgrade.bootstrap(document.body, [myModuleName], {
strictDi: true
});
}
}
我正在使用 Angular 5.2.0。