You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
526 B

---
order: 1
title:
zh-CN: 受控组件
en-US: Under Control
---
## zh-CN
value 和 onChange 需要配合使用。
## en-US
`value` and `onChange` should be used together,
````jsx
import { TimePicker } from 'antd';
class Demo extends React.Component {
state = {
value: null,
};
onChange = (time) => {
console.log(time);
this.setState({ value: time });
}
render() {
return <TimePicker value={this.state.value} onChange={this.onChange} />;
}
}
ReactDOM.render(<Demo />, mountNode);
````