时间戳格式转成字符串

1、时间戳格式转成字符串 

    JsonDateToFromatDate(JsonDateStr) {
      // let JsonDateStr = '1566194019000'
      let date = new Date(parseInt(JsonDateStr.replace('/Date(', '').replace(')/', ''), 10))
      let obj = {
        year: date.getFullYear(),  //年
        month: date.getMonth + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1,//月
        currentDate: date.getDate() < 10 ? '0' + date.getDate() : date.getDate(),//日
        hour: date.getHours(),//小时
        minute: date.getMinutes(),//分钟
        second: date.getSeconds()//秒
      }
      // let MMMM_NN_RR_HH_MM_SS = obj.year + '-' + obj.month + '-' + obj.currentDate + ' ' + obj.hour + ':' + obj.minute + ':' + obj.second
      let NN_RR_HH_MM = obj.month + '-' + obj.currentDate + ' ' + obj.hour + ':' + obj.minute
      // console.log(1111, obj)
      // console.log(2222, MMMM_NN_RR_HH_MM_SS)
      // console.log(3333, NN_RR_HH_MM)
      return NN_RR_HH_MM
    },

2、vue 混入 (JsonDateStr | timeFormats) 直接格式化

待补充

3、时间模板转化成 时间戳 

待补充

 

 

 

 

 

 

 

你可能感兴趣的:(前端学习,随笔)