具有最小最大范围的 React 年份选择器

React year picker with min max range

是否有任何反应年份选择器只能从给定的年份范围中选择年份。如果是这样,我该怎么做。我试过反应日期时间。但是我无法设置年份的范围。

<Datetime min={1800} max={2020} dateFormat="YYYY" timeFormat={false}    onChange={(date) => this.onChangeExactYear(date)}/>

你应该使用 isValidDate prop (https://github.com/arqex/react-datetime#blocking-some-dates-to-be-selected)

const isValidDate = current => {
    const year = current.year(); 
    return year >= 1800 && year <= 2020;
};