You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
508 B
Markdown
34 lines
508 B
Markdown
9 years ago
|
# 受控
|
||
9 years ago
|
|
||
|
- order: 8
|
||
|
|
||
9 years ago
|
受控制的页码。
|
||
9 years ago
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
import { Pagination } from 'antd';
|
||
|
|
||
9 years ago
|
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} />;
|
||
|
}
|
||
|
});
|
||
|
|
||
9 years ago
|
ReactDOM.render(
|
||
9 years ago
|
<Container />,
|
||
9 years ago
|
document.getElementById('components-pagination-demo-controlled'));
|
||
9 years ago
|
````
|
||
9 years ago
|
|