9

ag-grid のサンプル プロジェクトを実行しようとしていますが、次の例外が発生します。

「ag-grid-angular」の既知のプロパティではないため、「gridOptions」にバインドできません

コード:

<div style="width: 200px;">
  <ag-grid-angular #agGrid style="width: 100%; height: 200px;" 
    [gridOptions]="gridOptions" class="ag-fresh">
  </ag-grid-angular>
</div>

ag-grid-angular には「gridOptions」のような props はありません。ag-gridの公式サイトから来ているので変です。

どんな助けでも大歓迎です!

4

1 に答える 1

18

AgGridModule を登録していないようです@NgModule({})

見逃した場合は、以下のコードを試してください。

import {NgModule} from "@angular/core";
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({
    declarations: [
        AppComponent,
        MyGridApplicationComponent,
        RedComponentComponent
    ],
    imports: [
        BrowserModule,
        AgGridModule.withComponents(
            [RedComponentComponent]
        )
    ],
    providers: [],
    bootstrap: [AppComponent]
})
export class AppModule {
}
于 2017-05-29T09:21:29.740 に答える