首页 > Web开发 > 详细

处理时间戳的封装js

时间:2021-05-28 09:44:21      阅读:24      评论:0      收藏:0      [点我收藏+]
/**
 * Parse the time to string
 * @param {(Object|string|number)} time
 * @param {string} cFormat
 * @returns {string}
 */
export function parseTime(time, cFormat) {
  if (!time) {
    return ‘‘;
  }
  if (arguments.length === 0) {
    return null
  }
  const format = cFormat || ‘{y}-{m}-{d} {h}:{i}:{s}‘
  let date
  if (typeof time === ‘object‘) {
    date = time
  } else {
    if ((typeof time === ‘string‘) && (/^[0-9]+$/.test(time))) {
      time = parseInt(time)
    }
    if ((typeof time === ‘number‘) && (time.toString().length === 10)) {
      time = time * 1000
    }
    date = new Date(time)
  }
  const formatObj = {
    y: date.getFullYear(),
    m: date.getMonth() + 1,
    d: date.getDate(),
    h: date.getHours(),
    i: date.getMinutes(),
    s: date.getSeconds(),
    a: date.getDay()
  }
  const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
    let value = formatObj[key]
    // Note: getDay() returns 0 on Sunday
    if (key === ‘a‘) { return [‘日‘, ‘一‘, ‘二‘, ‘三‘, ‘四‘, ‘五‘, ‘六‘][value] }
    if (result.length > 0 && value < 10) {
      value = ‘0‘ + value
    }
    return value || 0
  })
  return time_str
}
 
/**
 * 使用方法
 * import {parseTime} from ‘parseTime‘
 * parseTime(需要处理时间戳的变量)
 * 
 */

处理时间戳的封装js

原文:https://www.cnblogs.com/HelloLc/p/14820145.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!