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.
32 lines
569 B
Markdown
32 lines
569 B
Markdown
9 years ago
|
# 受控组件
|
||
|
|
||
|
- order: 6
|
||
|
|
||
|
value 和 onChange 需要配合使用。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
9 years ago
|
import { TimePicker } from 'antd';
|
||
9 years ago
|
|
||
|
const Test = React.createClass({
|
||
|
getInitialState() {
|
||
|
return {
|
||
|
value: null,
|
||
|
};
|
||
|
},
|
||
|
onChange(time) {
|
||
|
time = time && time.toLocaleTimeString('zh-CN', {
|
||
|
hour12: false
|
||
|
});
|
||
|
console.log(time);
|
||
|
this.setState({ time });
|
||
|
},
|
||
|
render() {
|
||
9 years ago
|
return <TimePicker value={this.state.value} onChange={this.onChange} />;
|
||
9 years ago
|
}
|
||
|
});
|
||
|
|
||
9 years ago
|
ReactDOM.render(<Test />, document.getElementById('components-time-picker-demo-value'));
|
||
9 years ago
|
````
|