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

21 lines
328 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 9
title: 总数
---
2016-02-25 10:36:58 +08:00
通过设置 `showTotal` 展示总共有多少数据。
````jsx
import { Pagination, Select } from 'antd';
ReactDOM.render(
<Pagination
selectComponentClass={Select}
total={80}
2016-04-11 15:07:14 +08:00
showTotal={total => `共 ${total} 条`}
pageSize={20} defaultCurrent={1}
/>,
2016-02-25 10:36:58 +08:00
mountNode
);
````