js将获取到的时间转化为日期格式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
<script>
function formatDate(date,fmt) {
var date = new Date(date);
console.log("我的时间");
console.log(date);
if(/(y+)/.test(fmt)){
fmt = fmt.replace(RegExp.$1,(date.getFullYear()+"").substr(4-RegExp.$1.length));
}
let o = {
'M+':date.getMonth() + 1,
'd+':date.getDate(),
'h+':date.getHours(),
'm+':date.getMinutes(),
's+':date.getSeconds(),
}
for(let k in o){
if(new RegExp(`(${k})`).test(fmt)){
let str = o[k] + '';
fmt = fmt.replace(RegExp.$1,(RegExp.$1===1)?str:padLeftZero(str))
}
}
return fmt;
}
function padLeftZero(str) {
return ("00"+str).substr(str.length);
}
console.log(formatDate(1566916014000,'yyyy-MM-dd hh:mm:ss'));
</script>
</html>