mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
38 lines
620 B
Markdown
38 lines
620 B
Markdown
---
|
|
order: 9
|
|
title:
|
|
zh-CN: 总数
|
|
en-US: Total number
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过设置 `showTotal` 展示总共有多少数据。
|
|
|
|
## en-US
|
|
|
|
You can show the total number of data by setting `showTotal`.
|
|
|
|
```jsx
|
|
import { Pagination } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Pagination
|
|
total={85}
|
|
showTotal={total => `Total ${total} items`}
|
|
defaultPageSize={20}
|
|
defaultCurrent={1}
|
|
/>
|
|
<br />
|
|
<Pagination
|
|
total={85}
|
|
showTotal={(total, range) => `${range[0]}-${range[1]} of ${total} items`}
|
|
defaultPageSize={20}
|
|
defaultCurrent={1}
|
|
/>
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|