有没有一种方法可以更改材质表react.js中的默认页面索引0

问题描述

物料表中的页面索引似乎为'0',但是要使用的api从页面索引'1'开始,如何将表格的页面索引更改为API的>

解决方法

您可以将 initialPage 定义为options属性的一部分,可用于定义所需的内容。检查文档here

enter image description here

import MaterialTable from 'material-table';

<MaterialTable
// other props

    options={{
        initialPage: 1
       }}
/>

我希望对您有用!

,
 ***The Best way is***

    import { TablePagination} from "@material-ui/core";
    const [page,setPage] = React.useState(1);

   <TablePagination page={page - 1} onChangePage={handleChangePage}  />
   
     const handleChangePage = (event,newPage) => {
                    setPage(newPage + 1);
                };