【问题标题】:react-virtualized , where to call forceUpdateGrid to update table data?react-virtualized ,在哪里调用 forceUpdateGrid 来更新表数据?
【发布时间】:2019-06-25 18:42:53
【问题描述】:

在对表格数据进行排序时,我似乎无法调用forceUpdateGrid 来更新original docs 中提到的表格数据

我收到这个错误

'forceUpdateGrid' 未定义

当用户点击表格标题时我需要更新表格数据,目前它在页面滚动后更新。我在表中有 3 列,我需要按每个列标题对表进行排序和更新

import React from 'react';
import { Column, Table, SortDirection, SortIndicator } from 'react-virtualized';
import AutoSizer from 'react-virtualized/dist/commonjs/AutoSizer';
import _ from 'underscore';
import 'react-virtualized/styles.css';

import { fakeJson } from './Data/fakeJson';

const datalist  = fakeJson;
const list = datalist; 
class TableComponent2 extends React.Component {

  constructor(){
    super();
     this.state = {
       sortBy: 'username',
       sortDirection: SortDirection.DESC,
       sortedList: list
     }
   }

   sort({ sortBy, sortDirection }) {
     console.log(list)
    const tempList = _.sortBy(list, item => item[sortBy]);
    console.log(tempList);
    const sortedList = tempList.update(
        list =>
          sortDirection === SortDirection.DESC ? list.reverse() : list
      );

    this.setState({ sortBy, sortDirection, sortedList });
    this.forceUpdateGrid;
  }

    render() {
      return (
        <AutoSizer disableHeight>
          {({ width }) => (
            <Table
              headerHeight={20}
              height={740}
              rowCount={datalist.length}
              rowGetter={({ index }) => this.state.sortedList[index]}
              rowHeight={60}
              width={width}
              sort={this.sort}
              sortBy={this.state.sortBy}
              sortDirection={this.state.sortDirection}
            >
              <Column
                dataKey='id'
                width={200}
                flexGrow={1}
                label='ID'
              />
              <Column
                dataKey='name'
                width={200}
                flexGrow={1}
                label='NAME'
              />
              <Column
                dataKey='username'
                width={200}
                flexGrow={1}
                label='USERNAME'
              />
            </Table>
          )}
        </AutoSizer>
      );
    }
  }

  export default TableComponent2;

【问题讨论】:

标签: reactjs react-virtualized


【解决方案1】:

forceUpdateGrid 是 Table 组件公开的公共方法,您可以使用我在 Table 上定义的引用,例如 this.tableRef.forceUpdateGrid

import React from 'react';
import { Column, Table, SortDirection, SortIndicator } from 'react-virtualized';
import AutoSizer from 'react-virtualized/dist/commonjs/AutoSizer';
import _ from 'underscore';
import 'react-virtualized/styles.css';

import { fakeJson } from './Data/fakeJson';

const datalist  = fakeJson;
const list = datalist; 
class TableComponent2 extends React.Component {

  constructor(){
    super();
     this.state = {
       sortBy: 'username',
       sortDirection: SortDirection.DESC,
       sortedList: list
     }
   }

   sort({ sortBy, sortDirection }) {
     console.log(list)
    const tempList = _.sortBy(list, item => item[sortBy]);
    console.log(tempList);
    const sortedList = tempList.update(
        list =>
          sortDirection === SortDirection.DESC ? list.reverse() : list
      );

    this.setState({ sortBy, sortDirection, sortedList });
    this.tableRef.forceUpdateGrid();
  }

    render() {
      return (
        <AutoSizer disableHeight>
          {({ width }) => (
            <Table
              ref={(ref) => this.tableRef = ref}
              headerHeight={20}
              height={740}
              rowCount={datalist.length}
              rowGetter={({ index }) => this.state.sortedList[index]}
              rowHeight={60}
              width={width}
              sort={this.sort}
              sortBy={this.state.sortBy}
              sortDirection={this.state.sortDirection}
            >
              <Column
                dataKey='id'
                width={200}
                flexGrow={1}
                label='ID'
              />
              <Column
                dataKey='name'
                width={200}
                flexGrow={1}
                label='NAME'
              />
              <Column
                dataKey='username'
                width={200}
                flexGrow={1}
                label='USERNAME'
              />
            </Table>
          )}
        </AutoSizer>
      );
    }
  }

  export default TableComponent2;

【讨论】:

  • 在线this.tableRef.forceUpdateGrid 错误:Expected an assignment or function call and instead saw an expression 缺少什么
  • forceUpdateGrid 是一个方法,你需要调用它。更新了我的答案
  • 很高兴能帮上忙。
猜你喜欢
  • 2020-09-17
  • 1970-01-01
  • 2017-06-11
  • 1970-01-01
  • 2021-01-01
  • 1970-01-01
  • 2021-10-15
  • 1970-01-01
  • 2017-12-12
相关资源
最近更新 更多