通过反转年月日的位置来格式化日期

Format a date by reversing the position of the year, month and days

从日期选择器收到的值的格式为 "02-06-2020"(q-date 中的掩码 = "DD-MM-YYYY")。

我需要将其转换为"2020-06-02"格式才能发送到服务器。

我尝试了以下方法,但未定义。

示例:

let myDate = "02-06-2020";          
console.log(date.formatDate(myDate, "YYYY-MM-DD")) //undefined

对于寻找解决方案的建议,我将不胜感激。 谢谢

可以使用moment js

moment(moment('13-01-2020', 'DD-MM-YYYY')).format('YYYY-MM-DD');

date.split("-").reverse().join("-");