繁体   English   中英

更新 ag-grid angular4 中的行数据

[英]Updating row data in ag-grid angular4

在 AngularJS 中,我可以通过执行类似 `gridOptions.api.setRowData(rowData) 之类的操作来更新网格的行数据。

我现在正在尝试在 Angular4 应用程序中执行此操作。 我的 TS 文件有:

import { Component } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { AgGridModule } from 'ag-grid-angular/main';
import { GridOptions, RowNode } from 'ag-grid/main';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'app a4';
  studentList = {};
  gridOptions = {};


   constructor(private http: HttpClient){
       this.gridOptions = <GridOptions>{
           context: {
               componentParent: this
           },
           columnDefs: this.createColumnDefs(),
           rowDefs: this.studentList,
       };
   }

   ngOnInit(): void {
     this.http.get('students/list').subscribe(data => {
       this.studentList = data;
       console.log(data);
       this.gridOptions.api.setRowData(this.studentList);
     });
   }

       private createColumnDefs() {
           return [
               {
                   headerName: "Name",
                   field: "name",
                   width: 400
               },
               {
                   headerName: "SSN",
                   field: "ssn",
                   width: 400,
               }
           ];
       }

}

但是,在编译时,angular-cli 不喜欢`api。 根据 AG-Grid 文档,这似乎仍然是正确的做事方式。 我无法从示例中看出我缺少什么。

ERROR in C:/Projects/spring-boot-mvc-test/frontend/src/app/app.component.ts (31,25): Property 'api' does not exist on type '{}'.

ngOnInit 中的 gridOptions 似乎是空的。 试试这个:

ngOnInit(): void {
  let that: this = this;
  this.http.get('students/list').subscribe(data => {
    this.studentList = data;
    console.log(data);
    that.gridOptions.api.setRowData(this.studentList);
  });
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM