ant-design/components/pagination/demo/total.md

38 lines
613 B
Markdown
Raw Normal View History

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
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}
/>
2018-06-27 15:55:04 +08:00
</div>,
2018-11-28 15:00:03 +08:00
mountNode
);
2016-02-25 10:36:58 +08:00
````