我已经尝试了从React Datepicker禁用当前日期的可能方法。
下面是我的代码。
<SingleDatePicker
showDefaultInputIcon
inputIconPosition={ICON_AFTER_POSITION}
date={input.value}
placeholder="Move Date"
numberOfMonths={input.numberOfMonths ? input.numberOfMonths : 1}
focused={meta.active}
openDirection="up"
onDateChange={value => {
const val = value && value.format ? value.format() : value;
input.onChange(val);
}}
onFocusChange={({ focused }) => {
if (focused) {
input.onFocus({ focused });
return;
}
input.onBlur();
}}
/>
如果有人禁用帮助我。