vue 获取时间戳对象转换为日期格式

vue.js怎样将时间戳转化为日期格式
//value 格式为13位unix时间戳
//10位unix时间戳可通过value*1000转换为13位格式
function formatDate (date, fmt) {
    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.length === 1) ? str : padLeftZero(str));
        }
    }
    return fmt;
};

function padLeftZero (str) {
    return ('00' + str).substr(str.length);
};

把上面代码保存为date.js放到你的公共js文件夹中。
在你的需要格式化时间戳的组件里像下面这样使用:

let time = '1392515067621' //'时间戳'
formatDate(time) {
   var date = new Date(time);
   return formatDate(date, 'yyyy-MM-dd hh:mm');
}

要是还有不太明白的地方请留言,评论必回
要是对我的文章感兴趣的话,关注一下吧,谢谢!

上一篇:10分钟详解Spring全家桶7大知识点

下一篇:前端HTML空格转义符总结

你可能感兴趣的:(Vue)