gpt4 book ai didi

javascript - 当前日期值在 react-native-datepicker 中为 null

转载 作者:行者123 更新时间:2023-11-30 13:46:41 24 4
gpt4 key购买 nike

我正在使用 react-native-datepicker,我需要能够从今天的当前日期中选择任何日期。

但是,当前日期的值为空。我可以选择当前日期,但它没有任何值(value)。只有当前日期之后的日期才有值。

请参阅下面我的代码。

<DatePicker
date={this.state.date}
mode="date"
placeholder="Select date"
format="YYYY-MM-DD"
minDate={new Date()}
confirmBtnText="Confirm"
cancelBtnText="Cancel"
isClearable
customStyles={{
dateIcon: {
position: 'absolute',
left: 0,
top: 4,
marginLeft: 0
},
dateInput: {
marginLeft: 36,
borderWidth: 0,
right: 0,
color: "grey"
}
}}
onDateChange={(date) => { this.setState({ date: date }); }}
/>

最佳答案

发生这种情况是因为您传递了 minDate={new Date()},如果您删除它,您将能够选择今天之前的日期。

根据docs :

minDate: Restricts the range of possible date values.

因此 minDate={new Date()} 可以只选择大于 new Date()(今天)的日期。

关于javascript - 当前日期值在 react-native-datepicker 中为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59181351/

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