时间格式化
做项目的时候往往后台返回的时间数据不是我们想要的形式
如 (年-月-日 时:分:秒)
那要自己写代码来转换格式
下面代码可以快速格式化时间,建议收藏
代码如下
let time = '2020-04-24T11:01:51.000Z'
let tr = 1231231231231
// 定义格式化函数
function formatTime(time) {
const timer = new Date(time)
const year = timer.getFullYear()
const mouth = timer.getMonth() + 1 > 10 ? timer.getMonth() + 1 : '0' + (timer.getMonth() + 1)
const date = timer.getDate() > 10 ? timer.getDate() : '0' + timer.getDate()
const hours = timer.getHours() > 10 ? timer.getHours() : '0' + timer.getHours()
const min = timer.getMinutes() > 10 ? timer.getMinutes() : '0' + timer.getMinutes()
const secon = timer.getSeconds() > 10 ? timer.getSeconds() : '0' + timer.getSeconds()
return year + '-' + mouth + '-' + date + ' ' + hours + ':' + min + ':' + secon
}
console.log(formatTime(time)) // 2020-04-24 19:01:51
console.log(formatTime(tr)) // 2009-01-06 16:40:31