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.
ant-design/components/time-picker/demo/value.md

29 lines
443 B
Markdown

# 受控组件
- order: 1
value 和 onChange 需要配合使用。
---
````jsx
import { TimePicker } from 'antd';
const Test = React.createClass({
getInitialState() {
return {
value: null,
};
},
onChange(time) {
console.log(time);
this.setState({ value: time });
},
render() {
return <TimePicker value={this.state.value} onChange={this.onChange} />;
}
});
ReactDOM.render(<Test />, mountNode);
````