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

38 lines
535 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 8
2016-07-29 10:15:31 +08:00
title:
zh-CN: 受控
en-US: Controlled
2016-03-31 09:40:55 +08:00
---
2015-11-26 12:17:19 +08:00
2016-07-29 10:15:31 +08:00
## zh-CN
2015-11-26 17:15:18 +08:00
受控制的页码。
2015-11-26 12:17:19 +08:00
2016-07-29 10:15:31 +08:00
## en-US
Controlled page number.
2015-11-26 12:17:19 +08:00
````jsx
import { Pagination } from 'antd';
const Container = React.createClass({
2015-11-26 17:15:18 +08:00
getInitialState() {
return {
2016-05-11 09:32:33 +08:00
current: 3,
2015-11-26 17:15:18 +08:00
};
},
onChange(page) {
console.log(page);
this.setState({
2016-05-11 09:32:33 +08:00
current: page,
2015-11-26 17:15:18 +08:00
});
},
render() {
return <Pagination current={this.state.current} onChange={this.onChange} total={50} />;
2016-05-11 09:32:33 +08:00
},
2015-11-26 17:15:18 +08:00
});
ReactDOM.render(<Container />, mountNode);
2015-11-26 12:17:19 +08:00
````