0

我正在使用这个反应日期范围日历插件我有两个月并排使用showDoubleView={true}它正在显示当前月份+下一个。这是默认行为

但现在我想显示上个月 + 当前月份。我该如何指定它?

这是我的代码示例

<DateRangePicker
                onChange={handleValueChange}
                value={calendarValue}
                closeCalendar={true}
                format={'dd-MM-y'}
                showDoubleView={true}
                minDetail={'year'}
                showNeighboringMonth={true}
                selectRange={true}
            />

我试图设置activeStartDate={new Date(2021/2/1)},但日历显示 1970 年

4

1 回答 1

1

确保不要忘记在日期前后加上引号。也许这是1970年的问题。例如:

new Date(2021/2/1) // outputs Wed Dec 31 1969 19:00:01 GMT-0500 (Eastern Standard Time)
new Date('2021/2/1') // outputs Mon Feb 01 2021 00:00:00 GMT-0500 (Eastern Standard Time)
于 2021-03-02T11:56:13.190 回答