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

36 lines
496 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.
2017-02-13 10:55:53 +08:00
````jsx
2015-11-26 12:17:19 +08:00
import { Pagination } from 'antd';
class App extends React.Component {
state = {
current: 3,
}
onChange = (page) => {
2015-11-26 17:15:18 +08:00
console.log(page);
this.setState({
2016-05-11 09:32:33 +08:00
current: page,
2015-11-26 17:15:18 +08:00
});
}
2015-11-26 17:15:18 +08:00
render() {
return <Pagination current={this.state.current} onChange={this.onChange} total={50} />;
}
}
2015-11-26 17:15:18 +08:00
ReactDOM.render(<App />, mountNode);
2015-11-26 12:17:19 +08:00
````