码迷,mamicode.com
首页 > 其他好文 > 详细

时间转化封装

时间:2019-10-19 13:01:15      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:create   data   new   gets   ret   mat   creat   get   array   

function createdTime() {
  var now = new Date()
  let year = now.getFullYear() //得到年份
  let month = now.getMonth() //得到月份
  let date = now.getDate() //得到日期
  let day = now.getDay() //得到周几
  let hour = now.getHours() //得到小时
  let minu = now.getMinutes() //得到分钟
  let sec = now.getSeconds() //得到秒
  var MS = now.getMilliseconds() //获取毫秒
  let week
  month = month + 1
  if (month < 10) month = ‘0‘ + month
  if (date < 10) date = ‘0‘ + date
  if (hour < 10) hour = ‘0‘ + hour
  if (minu < 10) minu = ‘0‘ + minu
  if (sec < 10) sec = ‘0‘ + sec
  if (MS < 100) MS = ‘0‘ + MS
  let arr_week = new Array(
    ‘星期日‘,
    ‘星期一‘,
    ‘星期二‘,
    ‘星期三‘,
    ‘星期四‘,
    ‘星期五‘,
    ‘星期六‘
  )
  week = arr_week[day]
  let time = `${year}年${month}月${date}日${‘ ‘}${hour}${‘:‘}${minu}${‘:‘}${sec}${‘ ‘}${week}`
  let timeOne = `${year}-${month}-${date}${‘ ‘}${hour}${‘:‘}${minu}${‘:‘}${sec}${‘ ‘}${week}`
  let timeTwo = `${year}-${month}-${date}${‘ ‘}${hour}${‘:‘}${minu}${‘:‘}${sec}`
  let presenTdate = `${year}-${month}-${date}`
  let data = {
    time: time,
    timeOne: timeOne,
    timeTwo: timeTwo,
    now: new Date(now).getTime(),
    presenTdate: presenTdate
  }
  return data
}
function formatDateFn(now) {
  let year = now.getFullYear()
  let month = now.getMonth() + 1
  let date = now.getDate()
  let hour = now.getHours()
  let minute = now.getMinutes()
  let second = now.getSeconds()
  let MS = now.getMilliseconds() //获取毫秒
  let time =
    year +
    ‘-‘ +
    month +
    ‘-‘ +
    date +
    ‘ ‘ +
    hour +
    ‘:‘ +
    minute +
    ‘:‘ +
    second +
    ‘:‘ +
    MS
  let timeOne = year + ‘-‘ + month + ‘-‘ + date
  let data = { time, timeOne }
  return data
}
module.exports = { createdTime, formatDateFn }

  

时间转化封装

标签:create   data   new   gets   ret   mat   creat   get   array   

原文地址:https://www.cnblogs.com/tuziling/p/11703413.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!