在我的react-daterange选择器from react-dates中,电话中的响应模式无法正常工作

时间:2018-07-16 06:53:01

标签: reactjs react-dates

在我的react-dateRange选择器中,电话中的响应模式无法正常工作。左上角没有出现先前选择的按钮。

I can't choose the previous month

这是我的代码。请解决问题。

 <DateRangePicker
          startDate={this.state.startDate} // momentPropTypes.momentObj or null,
          orientation={HORIZONTAL_ORIENTATION}

          startDateId="your_unique_start_date_id" // PropTypes.string.isRequired,
          endDate={this.state.endDate} // momentPropTypes.momentObj or null,
          endDateId="your_unique_end_date_id" // PropTypes.string.isRequired,          
          onDatesChange={({ startDate, endDate }) => this.getDataWithDate(startDate, endDate)} // PropTypes.func.isRequired,
          focusedInput={this.state.focusedInput} // PropTypes.oneOf([START_DATE, END_DATE]) or null,
          onFocusChange={focusedInput => this.setState({ focusedInput })} // PropTypes.func.isRequired,
          isOutsideRange={() => false
          }
        />

0 个答案:

没有答案