偶然發現了一個獲取前台標准日期格式的簡介方法,分享給大家:
//日期返回值 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 }