Redux表单中的React Date Picker

时间:2019-07-09 10:17:10

标签: reactjs react-redux-form react-datepicker

我正在使用redux表单来设计用户个人资料。在该个人资料中,我想将用户的出生日期发送到redux存储。在这种情况下,我将为日期选择器组件编写以下函数。

const renderBirthday = ({
  input,
  label,
  meta: { touched, error },
  ...custom
}) => {
  return (
    <div>
      <DatePicker
        {...input}
        dateForm="MMMM d, yyyy h:mm aa"
        selected={input.value ? moment(input.value) : null}
        onChange={date => input.onChange(moment(date).format("YYYY/MM/DD"))}
      />
    </div>
  );
};

这是redux表单中的字段。

        <Field
            component={renderBirthday}
            name="dateOfBirth"

          />

尽管日期已设置为字段,但无法将其发送到redux存储。有人可以帮我解决这个问题吗?

0 个答案:

没有答案