使用 momentjs,它工作得非常好 - 返回 13m:
moment.duration(sg.time_played, 'seconds').format('d[d] h[h] m[m]')
并使用 DayJS:
dayjs.duration(sg.time_played, 'seconds').format('d[d] h[h] m[m]')
它将返回以下字符串:undefinedd undefined 13m
.
这两个函数的预期输出是13m
并且不完全确定为什么 DayJS 插件不能像现在那样工作。
谢谢。