欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

时间戳转日期格式yyyy-MM-dd HH:mm

程序员文章站 2022-04-03 22:28:04
...

时间戳转日期格式yyyy-MM-dd HH:mm


把获取到的时间戳转换为yyyy-MM-dd hh:mm格式

time(time)
function time(time = +new Date()) {
    var date = new Date(time + 8 * 3600 * 1000); // 增加8小时
    var month = date.getMonth() + 1;
    var strDate = date.getDate();
    if (month >= 1 && month <= 9) {
        month = "0" + month;
    }
    if (strDate >= 0 && strDate <= 9) {
        strDate = "0" + strDate;
    }
    var currentdate = date.getFullYear() + "-" + month + "-" + strDate
            + " " + date.getHours() + ":" + date.getMinutes();
    return currentdate;
}