Функция данных дерева Ag-сетки не показывает данные - PullRequest
1 голос
/ 26 сентября 2019

Я пытаюсь сделать эту работу в течение двух дней.Я пытаюсь показать данные дерева в Ag-grid в ReactJS, используя эту статью: https://www.ag -grid.com / javascript-grid-server-side-model-tree-data /

Может быть, я что-то упустил из их документации.Пожалуйста, помогите.

Очевидно, что их древовидные данные - это особенность предприятия, и я сослался на их модель на стороне сервера.

Ожидаемая функциональность: функция древовидных данных с данными с сервера.Два режима: одна загрузка всех данных или отложенная загрузка для пакетных данных

Мой JSON выглядит следующим образом:

[{
    "employeeId": 101,
    "employeeName": "Erica Rogers",
    "jobTitle": "CEO",
    "employmentType": "Permanent",
    "children": [{
        "employeeId": 102,
        "employeeName": "Malcolm Barrett",
        "jobTitle": "Exec. Vice President",
        "employmentType": "Permanent",
        "children": [
            {
            "employeeId": 103,
            "employeeName": "Leah Flowers",
            "jobTitle": "Parts Technician",
            "employmentType": "Contract"
            },
            {
            "employeeId": 104,
            "employeeName": "Tammy Sutton",
            "jobTitle": "Service Technician",
            "employmentType": "Contract"
            }
         ]
      }]
}]

И код:

    import React, { Component } from 'react';
    import { AgGridReact } from 'ag-grid-react';
    import 'ag-grid-community/dist/styles/ag-grid.css';
    import 'ag-grid-community/dist/styles/ag-theme-balham.css';
    import 'ag-grid-enterprise';

    export default class App extends Component {
        constructor(props) {
            super(props);
            this.state = {
                columnDefs: [
                    { field: "jobTitle" },
                    { field: "employmentType" }
                ],
                matchGridData: [],
                autoGroupColumnDef: {
                    headerName: "Model",
                    field: "model",
                    cellRenderer: 'agGroupCellRenderer',
                    cellRendererParams: {
                        checkbox: true
                    }
                },

                // indicate if row is a group node
                isServerSideGroup: function (dataItem) {
                    return dataItem.group;
                },

                // specify which group key to use
                getServerSideGroupKey: function (dataItem) {
                    return dataItem.MatchGroup;
                }
            }
        }

        render() {
            return (
                <div
                    className="ag-theme-balham"
                    style={{
                        height: '500px',
                        width: '600px'
                    }}
                >

                    <AgGridReact columnDefs={this.state.columnDefs} rowData={this.state.matchGridData} rowSelection="multiple"
                        onGridReady={params => this.gridApi = params.api} treeData={true} isServerSideGroup={this.state.isServerSideGroup}
                        getServerSideGroupKey={this.state.getServerSideGroupKey}
                        rowModelType='serverSide'
                    >
                    </AgGridReact>
                </div>
            );
        }



        getMatchingData = e => {
            fetch('/Matching/ResultGrid.aspx/GetMatchingData', {
                method: 'POST',
                body: JSON.stringify({ userId: this.state.userId, executionId: this.state.matchOrExecutionId, outputType: this.state.outputType, action: this.state.action }),
                headers: {
                    "Content-Type": "application/json; charset=UTF-8",
                    "Accept": "application/json, text/javascript, */*; q=0.01",
                    "X-Requested-With": "XMLHttpRequest"
                }
            })
                .then(response => {
                    return response.json();
                }, error => {
                    return error.json();
                })
                .then(jsonResponse => {
                    var result = JSON.parse(jsonResponse.d);
                    console.log(result);
                    this.setState({ matchGridData: result.SearchResults.Table });
                });
        }

    }
...