我正在使用React Native日期选择器并显示虚假日期。如果我选择2017年1月2日.View中的值是2017年1月1日。
<DatePicker
date={displayDate}
mode="date"
minDate={"1970/01/01"}
androidMode="spinner"
format="dddd MM/DD/YYYY"
confirmBtnText="Confirm"
cancelBtnText="Cancel"
showIcon={false}
onDateChange={(date) => {
let dateTime, time, newDate;
newDate = dateFormatter.getDateOnlyByUserTimeZone(date, this.props.user.timeZone)
time = dateFormatter.getLTZTimeOnlyFromUTC(this.props.caseCopy.caseDate, this.props.user.timeZone)
this.onChangeCaseDateTime(newDate, time)
}}
/>
有人可以提出可能的解决方法吗?