中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

React Native時間轉換格式工具類分享

發布時間:2020-08-19 17:42:02 來源:腳本之家 閱讀:149 作者:七月_代碼君 欄目:web開發

本文實例為大家分享了React Native時間轉換格式工具類,供大家參考,具體內容如下

class DateUtil{
  /**
   * 例如:2017-06-28 10:48:46轉成date類,
   * 可把- replace成/
   * @param dateString
   * @return Date
   */
  static parserDateString(dateString){
    if(dateString){
      let regEx = new RegExp("\\-","gi");
      let validDateStr=dateString.replace(regEx,"/");
      let milliseconds=Date.parse(validDateStr);
      return new Date(milliseconds);

    }
  }

  // timestamp時間戳 formater時間格式
  static formatDate(timestamp, formater) { 
    let date = new Date();
    date.setTime(parseInt(timestamp));
    formater = (formater != null)? formater : 'yyyy-MM-dd hh:mm';
    Date.prototype.Format = function (fmt) {
      var o = {
        "M+": this.getMonth() + 1, //月
        "d+": this.getDate(), //日
        "h+": this.getHours(), //小時
        "m+": this.getMinutes(), //分
        "s+": this.getSeconds(), //秒
        "q+": Math.floor((this.getMonth() + 3) / 3), //季度
        "S": this.getMilliseconds() //毫秒
      };

      if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.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;
    }
    return date.Format(formater);
  }
}
export default DateUtil;


外界調用方法

// 可將 - 替換成 / 或者 年月日等
DateUtil.formatDate(時間戳, "yyyy-MM-dd hh:mm:ss")

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙胜| 益阳市| 大厂| 额尔古纳市| 锡林郭勒盟| 临海市| 兰考县| 宿州市| 邹城市| 分宜县| 关岭| 鄱阳县| 台南县| 福安市| 承德市| 封开县| 天气| 调兵山市| 宁陵县| 凤庆县| 堆龙德庆县| 当阳市| 资源县| 商洛市| 双桥区| 娄底市| 巴东县| 广德县| 本溪市| 阿克| 海原县| 泾源县| 简阳市| 福鼎市| 乌拉特中旗| 瑞金市| 石嘴山市| 柘城县| 沁水县| 望谟县| 同江市|