DayPickerInput限制日期选择

时间:2019-01-28 10:28:57

标签: reactjs

我在我的应用程序中使用DayPickerInput。我知道之前和之后如何使用以限制日期选择,但是这些选项无法一起使用(对我来说)。但是单独使用它们效果很好,并限制了日期选择。

<DayPickerInput                                                                                             
   dayPickerProps={{                                                                                                   
     disabledDays: {
       before: today,                                                                                             
       after: afterDate                                                                                         
     }
   }}
 />

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您可以使用DayPickerInput通过以下方式禁用日期:

dayPickerProps={{
   disabledDays: [
     { before: moment().subtract(1, 'months').toDate() },
     { after: moment().toDate() },
   ]
}}