sizePerPage在反应BootstrapTable的分页中更改的问题

时间:2019-05-22 05:49:35

标签: reactjs pagination react-bootstrap

我想对BootstrapTable进行分页。当我更改每页的大小时,没有显示另一个大小的表,而是将我重定向到我的主页!

当我使用远程选项进行分页时,这发生在我身上。

    render() {
       const options = {
         onPageChange: this.handlePageChange,
         page: this.state.page,
         totalSize:this.state.totalSize,
         onSizePerPageList: this.handleSizePerPageChange,
         sizePerPage: this.state.sizePerPage
    };  

  <BootstrapTable
                  keyField='id'
                  data={this.state.item}
                  columns={ this.props.columns}
                  pagination={ paginationFactory(options) }
                  remote/>
}

0 个答案:

没有答案