0

使用 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 插件不能像现在那样工作。

谢谢。

4

1 回答 1

-1

使用HandD而不是h这样d

dayjs.duration(seconds, 'seconds').format('D[d] H[h] m[m]')

于 2021-07-22T13:27:33.903 回答