You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
684 B

# 分页
- order: 2
数据项较多时显示分页。
---
````jsx
var Table = antd.Table;
var columns = [{
title: '姓名',
dataIndex: 'name',
render: function(text) {
9 years ago
return <a href="javascript:;">{text}</a>;
}
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
dataIndex: 'address'
}];
var data = [];
10 years ago
for (let i=0; i<18; i++) {
data.push({
name: '李大嘴' + i,
age: 32,
10 years ago
address: '西湖区湖底公园' + i + '号'
});
}
var pagination = {
total: data.length,
current: 2
};
React.render(<Table columns={columns} dataSource={data} pagination={pagination} />
, document.getElementById('components-table-demo-paging'));
````