13

我有一个用于文件上传的“剩余时间”计数器。计算剩余持续时间并将其转换为毫秒,如下所示:

var elapsedTime = e.timeStamp - timestarted;
var speed = e.loaded / elapsedTime;
var estimatedTotalTime = e.totalSize / speed;
var timeLeftInSeconds = (estimatedTotalTime - elapsedTime) / 1000;

然后我构建了一个数组,我打算将其构建为人性化的字符串。数组如下:

var time = {
              years : Math.round(moment.duration(timeLeftInSeconds, 'milliseconds').years()),
              months : Math.round(moment.duration(timeLeftInSeconds, 'milliseconds').months()),
              days : Math.round(moment.duration(timeLeftInSeconds, 'milliseconds').days()),
              hours : Math.round(moment.duration(timeLeftInSeconds, 'milliseconds').hours()),
              minutes : Math.round(moment.duration(timeLeftInSeconds, 'milliseconds').minutes()),
              seconds : Math.round(moment.duration(timeLeftInSeconds, 'milliseconds').seconds())
};

这一切都很完美,如果我像这样输出这个数据的字符串表示:

  console.log(time.years + ' years, ' + time.months + ' months, ' + time.days + ' days, ' + time.hours + ' hours, '+ time.minutes + ' minutes, ' + time.seconds + ' seconds');

我它返回一个很好的简单剩余时间流,如下所示:

0 years, 0 months, 0 days, 0 hours, 1 minutes, 7 seconds

我现在需要做的是人性化这个输出,以便根据剩余时间构建字符串。例如

  • 还剩2年3个月
  • 还剩 1 小时 32 分 41 秒
  • 还剩 7 秒
  • 还剩 3 分 46 秒
  • 还剩 6 秒

等等……等等……

现在我知道 moment.js 具有自动人性化持续时间的能力,这对单个值很好,但这可以有多个可能的值(小时/分钟/秒等)

如何使用 moment.js 或手动构建字符串来人性化这些数据?

提前致谢。

4

4 回答 4

13

我的HumanizeDuration.js库听起来正是您想要的:

humanizeDuration(1);         // "1 millisecond"
humanizeDuration(3000);      // "3 seconds"
humanizeDuration(2012);      // "2 seconds, 12 milliseconds"
humanizeDuration(97320000);  // "1 day, 3 hours, 2 minutes"

看起来我的回答有点晚了,但也许它会帮助其他人看到这个问题!

于 2014-02-17T22:34:13.127 回答
10

我认为你最好的选择是这样的:

function humanize(time){
    if(time.years   > 0){   return time.years   + ' years and '     + time.months   + ' months remaining';}
    if(time.months  > 0){   return time.months  + ' months and '    + time.days     + ' days remaining';}
    if(time.days    > 0){   return time.days    + ' days and '      + time.hours    + ' hours remaining';}
    if(time.hours   > 0){   return time.hours   + ' hours and '     + time.minutes  + ' minutes and ' + time.seconds + ' seconds remaining';}
    if(time.minutes > 0){   return time.minutes + ' minutes and '   + time.seconds  + ' seconds remaining';}
    if(time.seconds > 0){   return time.seconds + ' seconds remaining';}
    return "Time's up!";
}

或者,您可以使用此功能:

function humanize(time){
    var o = '';
    for(key in time){
        if(time[key] > 0){
            if(o === ''){
                o += time[key] + ' ' + key + ' ';
            }else{
                return o + 'and ' + time[key] + ' ' + key + ' remaining';
            }
        }
    }
    return o + 'remaining';
}

它返回"x <time> and y <time> remaining", 对于 2 个最大值。(或者在最后一种情况下只有几秒钟。

于 2013-01-04T12:44:35.643 回答
4

你应该试试这个插件:moment-duration-format

它的语法非常方便:

var moment = require('moment');
require("moment-duration-format");
moment.duration(32832, "seconds").format("h [hrs]: m [min]: s [sec]")
// => 9 hrs: 7 min: 12 sec" 
于 2015-08-12T04:02:30.890 回答
0

我最终对 date-fns 的formatDistanceToNow感到满意。您可以添加该函数,而无需添加像 moment.js 这样的整个库

于 2020-01-23T09:24:37.360 回答