我想对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/>
}