如何在DatePickerIOS和DatePickerAndroid上禁用特定日期?

时间:2018-05-04 17:21:05

标签: javascript react-native datepicker

我有一个反应原生的日历,我需要它禁用一些日期(不能由用户选择,即每周二和周五)。 我在文档中看不到这些选项

https://facebook.github.io/react-native/docs/datepickerandroid.html

https://facebook.github.io/react-native/docs/datepickerios.html

有办法吗?

%25

1 个答案:

答案 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 ...'})
        }

      }}
    />