mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
552 B
552 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
value 和 onChange 需要配合使用。
en-US
Value
and onChange
should be used together,
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);