先安装Moment npm install moment --save 利用Moment.js格式化时间字符串生成Date数据 constmyDate=moment("2021年12月20日","YYYY年MM月DD日").format()// 2021-12-20constnewDate=newDate(myDate) 附上Moment.js 的官网链接https://momentjs.com/ 这里Moment.js可换成Dayjs体积更小功能一样https://githu...