2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 9
|
2016-07-29 10:15:31 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 总数
|
|
|
|
en-US: Total number
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2016-02-25 10:36:58 +08:00
|
|
|
|
2016-07-29 10:15:31 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-02-25 10:36:58 +08:00
|
|
|
通过设置 `showTotal` 展示总共有多少数据。
|
|
|
|
|
2016-07-29 10:15:31 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
You can show the total number of data by setting `showTotal`.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2016-11-22 10:12:14 +08:00
|
|
|
import { Pagination } from 'antd';
|
2016-02-25 10:36:58 +08:00
|
|
|
|
|
|
|
ReactDOM.render(
|
2017-02-23 11:45:48 +08:00
|
|
|
<div>
|
|
|
|
<Pagination
|
|
|
|
total={85}
|
|
|
|
showTotal={total => `Total ${total} items`}
|
|
|
|
pageSize={20}
|
|
|
|
defaultCurrent={1}
|
|
|
|
/>
|
|
|
|
<br />
|
|
|
|
<Pagination
|
|
|
|
total={85}
|
|
|
|
showTotal={(total, range) => `${range[0]}-${range[1]} of ${total} items`}
|
|
|
|
pageSize={20}
|
|
|
|
defaultCurrent={1}
|
|
|
|
/>
|
|
|
|
</div>
|
2016-11-15 16:44:00 +08:00
|
|
|
, mountNode);
|
2016-02-25 10:36:58 +08:00
|
|
|
````
|