如何将分页添加到React-bootstrap表中?

时间:2020-04-15 07:11:09

标签: arrays pagination react-bootstrap react-props

我为要分页的表格提供了以下代码。我尝试使用react-bootstrap / Pagination,但似乎没有用。如果不是这样,我希望将所有数据都放在一个大数组中,并根据页面大小道具切入页面。有帮助吗?

<Table striped responsive>
        <thead>
            <tr>
                {
                    props.columns.map( (col,i) => <th key={i}> {col.name} </th> )
                }
            </tr>
        </thead>
        <tbody>
            {
                props.data.map( (d, i) => <TableRow key={i} columns={props.columns} datum={d} /> )
            }
        </tbody>
</Table>

0 个答案:

没有答案