获取年月日的快捷方法
new Date().toISOString().slice(0, 10)//2023-03-06
new Date().toISOString().slice(0, 7)//2023-03
获取年月日
拼接法:
let date = new Date();
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
let currentDate = `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`;