1

我有这个代码:

    function startStopwatch() {
        vm.lastTickTime = new Date();

        $interval.cancel(vm.timerPromise);
        vm.timerPromise = $interval(function() {
            var tickTime = new Date();
            var dateDiff = vm.lastTickTime.getTime() - tickTime.getTime();
            var secondsDiff = Math.abs(dateDiff / 1000);
            vm.secondsElapsed += Math.round(secondsDiff);
            vm.formattedSecondsElapsed = moment.duration(secondsElapsed, "seconds").format("HH:mm:ss");
            vm.lastTickTime = tickTime;
        }, 1000);
    }

自从在秒表上按下“播放”按钮以来,它会计时秒数(int)。

但格式是01, 02.... 最多 60 然后01:01, 01:02, 等等。

我想将其格式化为00:00:00,递增 int. 我找到了其他编程语言的答案,但不是 JavaScript。任何帮助表示赞赏!

4

2 回答 2

2

借用 RJB 提供的答案,将算法转换为过滤器:

筛选

app.filter('time', function() { 
    function isInt(n){
        return Number(n) === n && n % 1 === 0;
    }
    return function(val) {
        if (isInt(val))
            return new Date(null, null, null, null, null, val).toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1");

        return val;
    }
});

用法

app.controller('ctrl', function($scope) {
    $scope.seconds = 25251;
});

HTML

<div ng-controller="ctrl">
      {{ seconds | time }}
</div>

演示 Plunker

于 2015-11-02T00:54:46.977 回答
1

我将取消删除它,因为我认为这是最好的答案,并且我认为它具有学术价值。

vm.durationElapsed = new Date(null, null, null, null, null, secondsElapsed).toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1");

答案在:https ://stackoverflow.com/a/12612778/1507899

于 2015-11-01T23:43:52.697 回答