date.format 不是函数 react-dates

date.format is not a function reacr-dates

我尝试使用 react-dates 中的 singleDatePicer,这是 airbnb 流行的日期选择器库,在选择日期时,它抛出错误 date.format is not a function,然后就中断了,我的代码沙箱 link 是 -> https://08cg1.csb.app/。提前致谢。

singleDatePicker 将接受 moment 对象作为 date 道具,因此您需要像下面这样更改 onDateChange:-

onDateChange={(date) => setDate(date)};
onDateChange={(date) => {setDate(date);}}

这里,先不要更改日期格式再设置状态。 直接设置状态即可。

如果您想在其他地方显示所选日期,请使用 moment

问题是,更改日期格式后,该格式不支持作为值。