我的项目由两个必须共享一个模块的独立 Angular 应用程序组成。它在 App A 中运行良好,但是当我创建从 App B 到 A 的相对导入时,它会抛出StaticInjectorError
.
ERROR Error: StaticInjectorError(AppModule)[AgGridNg2 -> ComponentFactoryResolver]:
StaticInjectorError(Platform: core)[AgGridNg2 -> ComponentFactoryResolver]:
NullInjectorError: No provider for ComponentFactoryResolver!
我希望只更改 App B 中的导入路径,使其指向 App A 中的模块。
像这样:App A(这很好用):
import { GridModule } from './grid/grid.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
GridModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
应用 B:
import { GridModule } from '../../../qtgridview/src/app/grid/grid.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
GridModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
有问题的模块:
@NgModule({
imports: [
CommonModule,
AgGridModule.withComponents([
IconCellRendererComponent
])
],
providers: [],
declarations: [GridComponent, IconCellRendererComponent],
exports: [GridComponent]
})
export class GridModule { }
这可能吗?我将如何以这种方式包含一个模块?提前致谢