gpt4 book ai didi

reactjs - 使用 React Datepicker 从给定日期排除 future 日期

转载 作者:行者123 更新时间:2023-11-30 07:12:32 26 4
gpt4 key购买 nike

将 React Datepicker 库与 Moment.js 一起使用时要操纵日期,可以排除下面捕获的给定日期并在 React Datepicker documentation 中描述;

// Exclude today and yesterday.
excludeDates = {[moment(), moment().subtract(1, "days")]}

如何从给定日期中排除 future 日期?

最佳答案

您可以使用 filterDate检查并返回 true 如果日期是过去的。

下面的代码片段说明了如何使用 filterDate

<DatePicker
selected = {this.state.date}
onChange = {this.handleChange}
filterDate = {(date) => {
return moment() > date;
}}
placeholderText = "Select a weekday"
/>

关于reactjs - 使用 React Datepicker 从给定日期排除 future 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50320495/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com