mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
1.1 KiB
1.1 KiB
order | title | ||||
---|---|---|---|---|---|
6 |
|
zh-CN
表格中的分页器可以通过一个配置对象来配置,当 pagination={false}
时,会隐藏分页器。
en-US
The pagination in table could be configured with an object, and you can use pagination={false}
to turn off pagination.
import { Table } from 'antd';
const columns = [{
title: 'Name',
dataIndex: 'name',
render: text => <a href="#">{text}</a>,
}, {
title: 'Age',
dataIndex: 'age',
}, {
title: 'Address',
dataIndex: 'address',
}];
const data = [];
for (let i = 0; i < 46; i++) {
data.push({
key: i,
name: `Edward King ${i}`,
age: 32,
address: `London, Park Lane no. ${i}`,
});
}
const pagination = {
total: data.length,
showSizeChanger: true,
onShowSizeChange: (current, pageSize) => {
console.log('Current: ', current, '; PageSize: ', pageSize);
},
onChange: (current) => {
console.log('Current: ', current);
},
};
ReactDOM.render(
<Table columns={columns} dataSource={data} pagination={pagination} />
, mountNode);