【发布时间】:2018-11-27 05:04:10
【问题描述】:
刚开始使用 Angular,所以显然使用 NG6
尝试使用 AG-Grid 创建一个演示来证明付费版本的成本是合理的,但按照他们网站上的简单步骤开始操作给我以下错误。 让我先确保这个组件与 Angular 6 兼容?
干杯, 否
Uncaught Error: Template parse errors:
Can't bind to 'rowData' since it isn't a known property of 'ag-grid-angular'.
1. If 'ag-grid-angular' is an Angular component and it has 'rowData' input, then verify that it is part of this module.
2. If 'ag-grid-angular' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. (" style="width: 500px; height: 500px;"
class="ag-theme-balham"
[ERROR ->][rowData]="rowData"
[columnDefs]="columnDefs">
</ag-grid-angular>
"): ng:///AppModule/AppComponent.html@11:16
Can't bind to 'columnDefs' since it isn't a known property of 'ag-grid-angular'.
1. If 'ag-grid-angular' is an Angular component and it has 'columnDefs' input, then verify that it is part of this module.
2. If 'ag-grid-angular' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("
class="ag-theme-balham"
[rowData]="rowData"
[ERROR ->][columnDefs]="columnDefs">
</ag-grid-angular>
"): ng:///AppModule/AppComponent.html@12:16
'ag-grid-angular' is not a known element:
1. If 'ag-grid-angular' is an Angular component, then verify that it is part of this module.
2. If 'ag-grid-angular' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("
<div class="col-10">
[ERROR ->]<ag-grid-angular
style="width: 500px; height: 500px;"
class="ag-t"): ng:///AppModule/AppComponent.html@8:12
at syntaxError (compiler.js:215)
at TemplateParser.push../node_modules/@angular/compiler/fesm5/compiler.js.TemplateParser.parse (compiler.js:14702)...
【问题讨论】: