js时间格式化

const formatDate = timestamp => {
  const date = new Date(timestamp);
  const m = date.getMonth() + 1;
  const d = date.getDate();
  const h = date.getHours();
  const i = date.getMinutes();
  return m + '月' + d + '日' + ' ' + h + ':' + i;
};
 
 
使用 :
formatDate(startTime * 1000)
 
 
 

/**
* 日期时间格式化 (CST 转化为标准时间可用)

*/
exports.formatDateCst = function(stamp, formatString){
var date = new Date(stamp);
var o = {
'M+': date.getMonth() + 1,
'D+': date.getDate(),
'h+': date.getHours(),
'm+': date.getMinutes(),
's+': date.getSeconds(),
'S' : date.getMilliseconds()
};
if(/(Y+)/.test(formatString)){
formatString = formatString.replace(RegExp.$1, (date.getFullYear() + "").substr(2 - RegExp.$1.length));
}
for(var k in o){
if(new RegExp('(' + k + ')').test(formatString)){
formatString = formatString.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length));
}
}
return formatString;
}

use: formatDateCst(value,'YY-MM-DD hh:mm:ss')

上一篇:Extjs GridPanel用法详解


下一篇:【oracle】lpad函数 作用(填充)