// since your date format is not a standard one, you would have to pass an
// instruction of your date format as a second parameter to the moment constructor
const momentDate = moment('15/07/21-23:59:59', 'DD/MM/YY-HH:mm:ss');
momentDate.format('DD/MM/YYYY'); // => "15/07/2021"
momentDate.format(`yyyy-MM-dd'T'HH:mm:ss.SSSZ`); // => "2021-07-Th'T'23:59:59.000+07:00"
2条答案
按热度按时间dl5txlt91#
奇怪的是,看到响应返回格式化的日期表达式。顺便说一下,使用momentjs可以轻松完成任务。以下是我的片段:
vc9ivgsu2#
可以按如下方式将此字符串传递给日期对象:
或者,如果date.parse()方法不起作用,则可以使用该方法: