我有一个警告错误,由于分页问题。我正在使用材料UI,我有一个搜索功能,问题是当我转到第2页,并试图搜索的东西,我得到以下错误
Failed prop type: Material-UI: the page prop of a TablePagination is out of range (0 to 0, but page is 1)
当前表格分页代码为
<TablePagination
onClick = {handleDrawerClose}
rowsPerPageOptions={[5, 20, 50]}
component="div"
count={userManagers && userManagers.length}
rowsPerPage={rowsPerPage}
page={page}
onChangePage={handleChangePage}
onChangeRowsPerPage={handleChangeRowsPerPage}
/>
the userManagers is the array containing all the data
1条答案
按热度按时间ljsrvy3e1#
我知道这个问题已经很老了,但这是因为当页面呈现时(在获取数据之前),计数属性值等于0。
为了解决这个问题,我只是在计数为0时将值0赋给页面属性。