时间日期转换 日期转星期
//获取时间 xxxx => xx:xx
getTime(str) {
return str.substring(0, 2) + ':' + str.substring(2, 4);
},
//获取星期 xxxx-xx-xx => 星期X
getDate(date) {
//返回xx:xx
const val = new Date(date);
let weekIndex = val.getDay();
const days = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'];
return days[weekIndex];
}
本文来自博客园,作者:1940,转载请注明原文链接:https://www.cnblogs.com/beiyi-Lin/p/16054226.html