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

40 lines
667 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`.
```tsx
import { Pagination } from 'antd';
2022-05-21 22:14:15 +08:00
import React from 'react';
2016-02-25 10:36:58 +08:00
const App: React.FC = () => (
<>
2017-02-23 11:45:48 +08:00
<Pagination
total={85}
showTotal={total => `Total ${total} items`}
defaultPageSize={20}
2017-02-23 11:45:48 +08:00
defaultCurrent={1}
/>
<br />
<Pagination
total={85}
showTotal={(total, range) => `${range[0]}-${range[1]} of ${total} items`}
defaultPageSize={20}
2017-02-23 11:45:48 +08:00
defaultCurrent={1}
/>
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```