无法绑定到“gridOptions”,因为它不是“ag-grid-angular”的已知属性
Posted
技术标签:
【中文标题】无法绑定到“gridOptions”,因为它不是“ag-grid-angular”的已知属性【英文标题】:Cannot bind to 'gridOptions' since it isn't a known property of 'ag-grid-angular' 【发布时间】:2017-10-29 12:48:24 【问题描述】:我正在尝试运行 the example project of ag-grid,但出现以下异常:
无法绑定到“gridOptions”,因为它不是 'ag-grid-angular'
代码:
<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”这样的道具。奇怪,来自ag-grid官网。
任何帮助将不胜感激!
【问题讨论】:
【参考方案1】:你好像没有在@NgModule()
注册AgGridModule
如果错过请尝试以下代码:
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
【讨论】:
别忘了重启你的应用服务器以上是关于无法绑定到“gridOptions”,因为它不是“ag-grid-angular”的已知属性的主要内容,如果未能解决你的问题,请参考以下文章
Angular 7 无法绑定到“routerlink”,因为它不是“a”的已知属性
无法绑定到“matMenuTriggerFor”,因为它不是“按钮”的已知属性
无法绑定到“(ngModel”,因为它不是角度单元测试用例中“输入”的已知属性