我正在使用反应日选择器。默认情况下,它将系统日期显示为突出显示的日期。我想使用从服务器收到的日期并使其突出显示日期。
这是我的代码: -
<DayPickerInput
onDayChange={this.handleDayChange.bind(this, 'maximumDeliveryDate')}
format="DD/MM/YYYY"
formatDate={formatDate}
placeholder="DD/MM/YYYY"
value={this.state.maximumDeliveryDate}
inputProps={{readOnly: 'readOnly'}}
dayPickerProps={{
selectedDays: this.state.selectedDay,
disabledDays: {before: new Date()}
}}/>
有人做过这样的事吗?