formatDuration - 返回毫秒数的可读格式

Posted bali123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了formatDuration - 返回毫秒数的可读格式相关的知识,希望对你有一定的参考价值。

返回给定毫秒数的可读格式。

用适当的值来划分ms,以获得 dayhourminutesecond 和 millisecond 的适当值。 通过 Array.filter() 使用 Object.entries() 只保留非零值。 使用 Array.map() 为每个值创建字符串,并且适当复数化。 使用 String.join(‘, ‘) 将这些值组合成一个字符串。

const formatDuration = ms => {
  if (ms < 0) ms = -ms;
  const time = {
    day: Math.floor(ms / 86400000),
    hour: Math.floor(ms / 3600000) % 24,
    minute: Math.floor(ms / 60000) % 60,
    second: Math.floor(ms / 1000) % 60,
    millisecond: Math.floor(ms) % 1000
  };
  return Object.entries(time)
    .filter(val => val[1] !== 0)
    .map(val => val[1] + ‘ ‘ + (val[1] !== 1 ? val[0] + ‘s‘ : val[0]))
    .join(‘, ‘);
};

formatDuration(1001); // ‘1 second, 1 millisecond‘
formatDuration(34325055574); // ‘397 days, 6 hours, 44 minutes, 15 seconds, 574 milliseconds‘

以上是关于formatDuration - 返回毫秒数的可读格式的主要内容,如果未能解决你的问题,请参考以下文章

使用 SQL 返回存储在 oracle blob 列中的文件的可读“文件大小”的优雅方法是啥?

Python 内建函数

Python 内建函数

计算方法执行完的耗时 c#

JavaScript 人类可读的毫秒时间戳

js 时间转换毫秒的四种方法(转)