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