亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

微信小程序中如何格式化時間

發布時間:2021-01-28 13:57:02 來源:億速云 閱讀:260 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關微信小程序中如何格式化時間的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1、 formatTime :Data型 2.formatNumber1:Long型

util.js

----------
//兩種方式 1.formatTime 傳入參數 Date 返回:年/月/日
const formatTime = date => {  
const year = date.getFullYear()  
const month = date.getMonth() + 1
  const day = date.getDate()  
  const hour = date.getHours()  
  const minute = date.getMinutes()  
  const second = date.getSeconds()  
  return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}const formatNumber = n => {
  n = n.toString()  
  return n[1] ? n : '0' + n
}

module.exports = {
  formatTime: formatTime,
  formatTime1: formatTime1
}
function formatTime1(n){
  n = n.toString()  
  return n[1] ? n : '0' + n
}
// 2.formatTime1傳入參數 (時間戳,格式:如YYYY -MM-DD)
//返回:年-月-日(自定義)
function formatTime1(number, format) {

  var formateArr = ['Y', 'M', 'D', 'h', 'm', 's'];  
  var returnArr = [];  
  var date = new Date(number);
  returnArr.push(date.getFullYear());
  returnArr.push(formatNumber1(date.getMonth() + 1));
  returnArr.push(formatNumber1(date.getDate()));

  returnArr.push(formatNumber1(date.getHours()));
  returnArr.push(formatNumber(date.getMinutes()));
  returnArr.push(formatNumber1(date.getSeconds()));  
  for (var i in returnArr) {
    format = format.replace(formateArr[i], returnArr[i]);
  }  
  return format;
}

感謝各位的閱讀!關于“微信小程序中如何格式化時間”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

东山县| 密云县| 敖汉旗| 惠水县| 天镇县| 东城区| 新巴尔虎右旗| 新密市| 伊宁市| 阿坝县| 竹山县| 安吉县| 客服| 工布江达县| 东乡| 亚东县| 讷河市| 蓝田县| 九江县| 黄平县| 太谷县| 济宁市| 响水县| 蕲春县| 维西| 北京市| 门头沟区| 克山县| 新建县| 石狮市| 宜城市| 阆中市| 招远市| 资源县| 永丰县| 玉山县| 怀远县| 沈阳市| 西盟| 年辖:市辖区| 丹凤县|