如何格式化momentjs持续时间是人类可读的?

时间:2016-03-25 22:22:08

标签: javascript momentjs iso8601

我有一系列ISO 8601持续时间,我想要求和,然后以人类可读的格式显示。 时间看起来像PT10M33SPT3H00M00SPT50H23M15S。我使用moment jsmoment.duration()解析它们,但是当我将它们添加到一起时,我不知道如何将它们变成可读的东西。

3 个答案:

答案 0 :(得分:2)

根据文档https://momentjs.com/docs/#/durations/humanize/的当前时间,您可以执行以下操作:

duration.humanize();
// or if the duration is given in other values like seconds:
moment.duration(60, "seconds").humanize(); // a minute

以自定义格式显示持续时间:

moment.utc(duration.as('milliseconds')).format('HH:mm:ss');

答案 1 :(得分:1)

花了几个小时后,我发现了moment-duration-format插件。您可以在持续时间对象上调用.format(),并将格式化的字符串传递给您要显示的内容。以下是我最后写的内容:

function formatDuration(duration, format_string) {
  var length;
  if (format_string === "long") {
    format = [
      duration.months() === 1 ? "Month" : "Months",
      duration.days() === 1 ? "Day" : "Days",
      duration.hours() === 1 ? "Hour" : "Hours",
      duration.minutes() === 1 ? "Minute" : "Minutes",
      duration.seconds() === 1 ? "Second" : "Seconds"
    ];
    length = duration.format("M [" + format[0] + "] d [" + format[1] +
    "] h [" + format[2] + "] m [" + format[3] + " and] s [" + format[4] + "]");
  } else if (format_string === "short") {
    length = duration.format("M[m] d[d] h:mm:ss");
  } else {
    length = duration.format(format_string);
  };
  return length;
};

答案 2 :(得分:0)

这个怎么样:

> var d = moment.duration(125, 's')
undefined
> moment().subtract(d).fromNow().replace(/ ago/, '')
'2 minutes'