Date timestamp conversion

utils.js

const formatTime = date => {
  const year = date.getFullYear()
  const month = date.getMonth() + 1
  const day = date.getDate()
  const hour = date.getHours()
  const minute = date.getMinutes()
  const second = date.getSeconds()
  return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}

const formatNumber = n => {
  n = n.toString()
  return n[1] ? n : '0' + n
}

function formatTimeTwo(number, format) {
  var formateArr = ['Y', 'M', 'D', 'h', 'm', 's'];
  var returnArr = [];
  // var date = new Date(number * 1000);//时间戳为10位
  var date = new Date(number );//时间戳为13位
  returnArr.push(date.getFullYear());
  returnArr.push(formatNumber(date.getMonth() + 1));
  returnArr.push(formatNumber(date.getDate()));

  returnArr.push(formatNumber(date.getHours()));
  returnArr.push(formatNumber(date.getMinutes()));
  returnArr.push(formatNumber(date.getSeconds()));

  for (var i in returnArr) {
    format = format.replace(formateArr[i], returnArr[i]);
  }
  return format;
}
module.exports = {
  FormatTime: FormatTime, 
  formatTimeTwo: formatTimeTwo 
}

In need quote utils.js need to convert the timestamp of the page js file

const Time = the require ( ' ../../utils/util.js ' ) 

the console.log (time.formatTimeTwo (field names to be converted, ' the Y / M / D H: m: S ' )); 
Console. log (time.formatTimeTwo (field names, ' the Y / m / D ' )); 
the console.log (time.formatTimeTwo (field name, ' H: m ' ));

 

Reprinted: https: //www.jianshu.com/p/16e152dc2242

Guess you like

Origin www.cnblogs.com/zpblogs/p/11314690.html