找不到组件工厂。你有没有把它添加到@ NgModule.entryComponents?

时间:2017-07-31 10:06:13

标签: angular ag-grid

使用带有angular4的ag-grid时,我遇到了以下错误信息。

我正在尝试通过HTTP获取json后显示行数据。

this.gridOptions.api.setRowData(this.gridOptions.rowData);

但是我的代码在错误信息下面。

  

错误错误:找不到RedComponentComponent的组件工厂。难道   你把它添加到@ NgModule.entryComponents?

这是我的app模块代码。我已经设置为entryComponents。

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AgGridModule} from "ag-grid-angular/main";

import { AppComponent } from './app.component';
import { MyGridApplicationComponent } from './my-grid-application/my-grid-application.component';
import { RedComponentComponent } from './red-component/red-component.component';

@NgModule({
  imports: [
    BrowserModule,
    AgGridModule.withComponents(
      [RedComponentComponent]
    ),
    FormsModule,
    HttpModule
  ],
  declarations: [
    AppComponent,
    MyGridApplicationComponent,
    RedComponentComponent
  ],
  entryComponents: [
    RedComponentComponent
  ],  
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

error position of my code

我的问题。为什么此代码无法解析此组件。

1 个答案:

答案 0 :(得分:6)

从服务器加载数据时,您正在将string传递给ComponentFactoryResolver,但它应该是组件类型。

<强> header.json

{
  "headerName": "DetailCode",
  "field": "detailCode",
  "cellRendererFramework": "RedComponentComponent", // string
  "width":100
},

要解决它,我会创建入口组件映射,如:

<强>入门components.ts

import { RedComponentComponent } from './red-component/red-component.component';

export const entryComponentsMap = {
  'RedComponentComponent': RedComponentComponent
};

然后将json字符串的映射映射到组件类

<强> COMM-代码并网option.service.ts

private fetchColumnDefs() {
 console.log("fetchColumnDefs()");

 this.http.get(this.API_URI + "resident/header.json").subscribe(
   r => {
     this.gridOptions.columnDefs = r.json();
     this.gridOptions.columnDefs.forEach((x: any) => {
       if (x.cellRendererFramework) {
         x.cellRendererFramework = entryComponentsMap[x.cellRendererFramework];
       }
     });