How to set custom date to DatePicker of react-datepicker using MomentJS?
问题 I have stored dates in database. I can fetch dates successfully. But when it comes to set any particular date to DatePicker of react-datepicker, I couldn't set that date. Here is code that I have used for fetching dates and setting state with the value of date. loadAllEvents() { axios({ method: 'POST', url: '/api/Account/SelectAllDatesFromDb', contentType: 'application/json', data: {}, }).then(function (response) { if(response!=null){ this.setState({ eventList: response.data }); this