Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在反应日期选择器中禁用过去几年的下拉列表?问题是当我们单击下拉列表时,它显示过去几年以及未来一年。我想显示当前和未来几年在此处输入图像描述
您可以将 prop 传递minDate给DatePicker组件,并将其设置为当前年份的开始。
minDate
DatePicker
<DatePicker minDate={moment().startOf('year')} />;