时间戳的转化

时间:2021-05-18 02:20:11

后台返回的时间格式 May 9, 2019 10:56:11 AM 时间

原型链上封装Format方法  文件util.js

Date.prototype.Format = function(fmt) { //
    let o = {  
        "M+" : this.getMonth()+1,                 //月份  
        "d+" : this.getDate(),                    //
        "h+" : this.getHours(),                   //小时  
        "m+" : this.getMinutes(),                 //
        "s+" : this.getSeconds(),                 //
        "q+" : Math.floor((this.getMonth()+3)/3), //季度  
        "S"  : this.getMilliseconds()             //毫秒  
    };  
    if(/(y+)/.test(fmt))  
        fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));  
    for(var k in o)  
        if(new RegExp("("+ k +")").test(fmt))  
            fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));  
    return fmt;  
  }

vue中调用 

import Format from "../../../store/util.js";
代码
时间戳的转化

前台显示

时间戳的转化