나는 새로운 프로젝트에서 ag-grid를위한 "Getting Started"튜토리얼을 진행했습니다. 모든 단계를 완료했지만 오류가 발생했습니다.
ag-Grid: could not find matching row model for rowModelType clientSide
ag-Grid: Row Model "Client Side" not found. Please ensure the ClientSideRowModelModule is loaded using: import '@ag-grid-community/client-side-row-model';
내 모든 코드를 튜토리얼에서 제공된 예제와 일부 플 런커 예제와 비교했지만 차이점을 발견하지 못했습니다. ClientSideRowModelModule을 app.module로 가져 오려고 시도했지만 인터페이스가 요청한 것과 일치하지 않아 작동하지 않았습니다. 아이디어가 없으며 문제를 해결하는 방법에 대한 정보를 찾지 못했습니다.
app.module.ts :
... imports: [
BrowserModule,
AppRoutingModule,
AgGridModule.withComponents([])
],...
app.cpmponent.html :
<ag-grid-angular
style="width: 500px; height: 500px;"
class="ag-theme-balham"
[rowData]="rowData"
[columnDefs]="columnDefs"
>
</ag-grid-angular>
app.component.ts :
...columnDefs = [
{headerName: 'Make', field: 'make' },
{headerName: 'Model', field: 'model' },
{headerName: 'Price', field: 'price'}
];
rowData = [
{ make: 'Toyota', model: 'Celica', price: 35000 },
{ make: 'Ford', model: 'Mondeo', price: 32000 },
{ make: 'Porsche', model: 'Boxter', price: 72000 }
];...
Angular : 8.2.10, Angular CLI : 8.2.2, npm : 6.9.0을 사용하고 있습니다.