我有一个反应原生的日历,我需要它禁用一些日期(不能由用户选择,即每周二和周五)。 我在文档中看不到这些选项
https://facebook.github.io/react-native/docs/datepickerandroid.html
https://facebook.github.io/react-native/docs/datepickerios.html
有办法吗?
%25
答案 0 :(得分:1)
我认为你可以使用这个
<DatePickerIOS
date={this.state.chosenDate}
onDateChange={(date) => {
if(date.getDay() != '2' || date.getDay() != '5') {
this.setState({chosenDate: newDate})
}
else {
this.setState({error:'you can not select this date ...'})
}
}}
/>