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.
有没有办法使用日期选择器来简单地显示被屏蔽的日期范围,而不是实际允许用户选择日期范围。
我需要的功能的一个很好的例子是 Airbnb 用于每个属性的可用性显示:
例子
现在解决了这个问题。最后,我做了以下事情:
import { DayPickerSingleDateController } from 'react-dates'; .... const [focusedInput, setFocusedInput] = useState('startDate'); <DayPickerSingleDateController ... onFocusChange={focusedInput => { return true; }} ... >