中国标准时间、标准时间、时间戳时间格式转换

中国标准时间-格式: Sat Apr 09 2022 08:00:00 GMT+0800 (中国标准时间)
标准时间-格式: 2022-04-09
时间戳-格式: 1649462400000

一、中国标准时间和标准时间相互转换

1、中国标准时间 => 标准时间
// 中国标准时间 转换成 年月日
function getSimpleDate(date) {
  var y = date.getFullYear();
  var m = date.getMonth() + 1;
  m = m < 10 ? ('0' + m) : m;
  var d = date.getDate();
  d = d < 10 ? ('0' + d) : d;
  var h = date.getHours();
  var minute = date.getMinutes();
  minute = minute < 10 ? ('0' + minute) : minute;
  var s = date.getSeconds();
  s = s < 10 ? '0' + s : s;
  return y + '-' + m + '-' + d + ' ' + h + ':' + minute + ':' + s;
}
2、标准时间 => 中国标准时间
var s=new Date(stime).getTime();

二、中国标准时间和时间戳相互转换

1、中国标准时间 => 时间戳
new Date()           // Wed Jan 12 2022 11:14:50 GMT+0800 (中国标准时间)
new Date().getTime() // 1641957294080
2、时间戳 => 中国标准时间
function getSimpleDate(date) {
  let dd = new Date(date) // 时间戳转化成中国标准时间格式
  return dd 
}

三、标准时间 和 时间戳 相互转换

1、标准时间 => 时间戳
function getSimpleDate(date) {
  let stamp = new Date(currentDate).getTime() // 年月日转化成时间戳
  //let preDate = new Date(currentDate).getTime() - (24 * 60 * 60 * 1000) // 前一天时间戳
  //let afterDate = new Date(currentDate).getTime() + (24 * 60 * 60 * 1000) // 后一天时间戳
  return stamp
}
2、时间戳 => 标准时间
function getSimpleDate(date) {
  let dd = new Date(date).getTime() // 时间戳转化成标准时间
  return dd 
}

四、相关格式化方法

/**
 *对Date的扩展,将 Date 转化为指定格式的String
 *月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
 *年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
 *例子:
 *(new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
 *(new Date()).Format("yyyy-M-d h:m:s.S")      ==> 2006-7-2 8:9:4.18
 */
 export function dateFormat(date, fmt) {
  if (!date || date === '-') {
    return '-'
  }
  let o = {
    'M+': date.getMonth() + 1, // 月份
    'd+': date.getDate(), // 日
    'H+': date.getHours(), // 小时
    'h+': date.getHours(), // 小时
    'm+': date.getMinutes(), // 分
    's+': date.getSeconds(), // 秒
    'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
    S: date.getMilliseconds() // 毫秒
  }
  if (/(y+)/.test(fmt)) {
    fmt = fmt.replace(RegExp.$1, (date.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
}
// 使用插件moment
import moment from 'moment'

/**
 * 日期格式化,并且不可以为空处理
 * @param {*} time 需要格式化的日期
 * @param {*} str 格式化的样式
 * @param {*} defaultNull 时间为空时的返回值
 * @returns 日期格式化
 */
export function dateFormatNotNUll(time, str = 'yyyy-MM-DD', defaultNull = '-') {
  if (!time || time === '-' || time === '— —') {
    return defaultNull
  }
  return moment(time).format(str)
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值