vue2 将秒转换成时分秒格式
时间: 2023-05-22 20:05:25 浏览: 631
把毫秒数转换为年月日时分秒
3星 · 编辑精心推荐
可以使用moment.js库来将秒转换成时分秒格式,具体代码如下:
```
import moment from 'moment'
let second = 3661 // 需要转换的秒数
let duration = moment.duration(second, 'seconds')
let hours = duration.hours()
let minutes = duration.minutes()
let seconds = duration.seconds()
let timeFormat = ''
if (hours > 0) {
timeFormat += hours + ':'
}
timeFormat += (minutes < 10 ? '0' + minutes : minutes) + ':'
timeFormat += (seconds < 10 ? '0' + seconds : seconds)
console.log(timeFormat) // 输出:1:01:01
```
阅读全文