我正在使用react
日期选择器:react-datepicker。使用以下代码:
<DatePicker
inline
name='startDate'
selected={this.state.startDate}
value = {this.state.startDate}
onChange={this.handleStartDateChange}
minDate={subDays(new Date(), 0)}
showTimeSelect
dateFormat="dd/MM/yyyy"
timeFormat="HH:mm"
timeIntervals={15}
timeCaption="time"
/>
选择日期时,我得到的值是:Wed May 15 2019 17:00:00 GMT+0300 (Eastern European Summer Time)
。
我也在使用date-fns到format
的时间。但是看来date-fns无法理解Wed
或日期之前的任何一天。我尝试更改格式功能
format(date, "dd/MM/yyyy HH:mm")
但是我总是得到相同的结果:
Wed We/05/yyyy 17:00
我在做什么错了?