我正在使用React Date Picker来获取日期,到目前为止,我收到的日期是:星期五02/01/2019 00:00:00 GMT + 0530(印度标准时间),现在我想将其格式化为“ “ YYYY-MM-DD”格式。在React js中有没有办法实现?
我尝试这样做,但是没有帮助:
date=this.state.startDate.getDate() + "-"+ parseInt(this.state.startDate.getMonth()+1) +"-"+this.state.startDate.getFullYear();