У меня есть форма для редактирования.В настоящее время я могу получить заголовок и описание.Вот код
componentWillReceiveProps(newProps) {
console.log(newProps);
console.log(newProps.calendarEvent);
const { change, calendarEvent } = this.props;
if (this.state.initial) {
this.setState({ initial: false }, () => {
if (newProps.calendarEvent && newProps.calendarEvent.summary) {
change('title', newProps.calendarEvent.summary);
}
if (newProps.calendarEvent && newProps.calendarEvent.description) {
change('description', newProps.calendarEvent.description);
}
Благодаря этому коду, как я могу получить введенное время, используя moment.js