zoukankan      html  css  js  c++  java
  • 使用javascript进行时间数据格式的转换

        // 转换时间的方法
        formatDate(date, format) {
          let time = {
            'M+': date.getMonth() + 1,
            'd+': date.getDate(),
            'h+': date.getHours(),
            'm+': date.getMinutes(),
            's+': date.getSeconds(),
            'q+': Math.floor((date.getMonth() + 3) / 3),
            'S+': date.getMilliseconds()
          }
          // 匹配1到多个的y(y+),i是忽略大小写, 指的是与正则表达式匹配的第一个子匹配(以括号为标志)字符串
          if (/(y+)/i.test(format)) {
            format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
          }
          for (let k in time) {
            if (new RegExp('(' + k + ')').test(format)) {
              format = format.replace(
                RegExp.$1,
                RegExp.$1.length === 1 ? time[k] : ('00' + time[k]).substr(('' + time[k]).length)
              )
            }
          }
          return format
        }
    

      

  • 相关阅读:
    hinge loss
    KL散度
    pygame 学习
    pytorch 反向传播
    在线画数学函数图
    recover deleted files
    98个关键点的人脸
    Pytorch详解BCELoss和BCEWithLogitsLoss
    one hot vector
    Effective C++
  • 原文地址:https://www.cnblogs.com/Roxxane/p/13516142.html
Copyright © 2011-2022 走看看