我在此页面中找到了以下代码:
<DayPicker
initialMonth={new Date(2017, 3)}
disabledDays={[
new Date(2017, 3, 12),
new Date(2017, 3, 2),
{
after: new Date(2017, 3, 20),
before: new Date(2017, 3, 25),
},
]}
/>
我正在尝试将它(重新 disabledDays)应用于我的案例(即使用“DayPickerInput”,而不是“DayPicker”时)如下:
<DayPickerInput
// ...
disabledDays: {
before: pydate.toDate(),
after: date,
},
/>
但它不起作用。我究竟做错了什么 ?