js怎麼轉成日期?/** * 日期格式化,接下來我們就來聊聊關于js怎麼轉成日期?以下内容大家不妨參考一二希望能幫到您!
/**
* 日期格式化
* @param {時間對象} date
* @param {字符串} str
* @param {布爾值} isTime
* @param {tiemStr} str
*/
function formatDate(date, isTime = false, str = '-', tiemStr = ':'){
date = new Date(date)
let Y = date.getFullYear()
let M = (date.getMonth() 1) < 10 ? '0' (date.getMonth() 1) : date.getMonth() 1
let D = date.getDate() < 10 ? '0' date.getDate() : date.getDate()
if(isTime){
let h = date.getHours() < 10 ? '0' date.getHours() : date.getHours()
let m = date.getMinutes() < 10 ? '0' date.getMinutes() : date.getMinutes()
let s = date.getSeconds() < 10 ? '0' date.getSeconds() : date.getSeconds()
return Y str M str D ' ' h tiemStr m tiemStr s
}
return Y str M str D
}
export { formatDate}
,更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!