ant-design/components/table/demo/paging.md

48 lines
803 B
Markdown
Raw Normal View History

2015-07-09 20:29:26 +08:00
# 分页
- order: 5
2015-07-09 20:29:26 +08:00
数据项较多时显示分页。
---
````jsx
import { Table } from 'antd';
const columns = [{
title: '姓名',
2015-07-15 10:47:47 +08:00
dataIndex: 'name',
render: function(text) {
return <a href="#">{text}</a>;
2015-07-15 10:47:47 +08:00
}
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
2015-07-15 10:47:47 +08:00
dataIndex: 'address'
}];
const data = [];
for (let i = 0; i < 46; i++) {
data.push({
2015-08-28 15:22:09 +08:00
key: i,
name: '李大嘴' + i,
age: 32,
2015-07-14 16:34:26 +08:00
address: '西湖区湖底公园' + i + '号'
});
}
const pagination = {
total: data.length,
2015-12-09 21:49:32 +08:00
current: 1,
2015-12-24 10:12:31 +08:00
showSizeChanger: true,
onShowSizeChange: function(current, pageSize) {
console.log('Current: ', current, '; PageSize: ', pageSize);
}
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(<Table columns={columns} dataSource={data} pagination={pagination} />
, mountNode);
2015-07-09 20:29:26 +08:00
````