2016-07-29 10:15:31 +08:00
---
category: Components
type: Navigation
title: Pagination
2017-02-18 18:12:38 +08:00
cols: 1
2016-07-29 10:15:31 +08:00
---
A long list can be divided into several pages by `Pagination` , and only one page will be loaded at a time.
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-29 10:15:31 +08:00
- When it will take a long time to load/render all items.
2017-09-08 09:45:56 +08:00
- If you want to browse the data by navigating through pages.
2016-07-29 10:15:31 +08:00
## API
```html
< Pagination onChange = {onChange} total = {50} / >
```
Property | Description | Type | Default
-----|-----|-----|------
2017-01-20 20:10:50 +08:00
current | current page number | number | -
2017-09-08 09:45:56 +08:00
defaultCurrent | default initial page number | number | 1
total | total number of data items | number | 0
defaultPageSize | default number of data items per page | number | 10
pageSize | number of data items per page | number | -
onChange | a callback function, executed when the page number is changed, and it takes the resulting page number and pageSize as its arguments | Function(page, pageSize) | noop
2017-01-20 20:10:50 +08:00
showSizeChanger | determine whether `pageSize` can be changed | boolean | false
2017-09-08 09:45:56 +08:00
pageSizeOptions | specify the sizeChanger options | string[] | ['10', '20', '30', '40']
onShowSizeChange | a callback function, executed when `pageSize` is changed | Function(current, size) | noop
showQuickJumper | determine whether you can jump to pages directly | boolean | false
2017-01-20 20:10:50 +08:00
size | specify the size of `Pagination` , can be set to `small` | string | ""
2017-03-06 15:48:03 +08:00
simple | whether to use simple mode | boolean | -
2016-11-22 10:12:14 +08:00
showTotal | to display the total number and range | Function(total, range) | -
2017-08-30 14:02:49 +08:00
itemRender | to customize item innerHTML | (page, type: 'page' \| 'prev' \| 'next', originalElement) => React.ReactNode | - |