我有一個簡單的控制器,旨在做一個簡單的倒計時。
當我運行這段代碼時,我得到的只是控制檯中的一個「tick」。我期望每5毫秒一次。
.controller('Countdown', function($scope, $timeout){
$scope.endtime = new Date('May 5, 2014 00:00:00');
var countup = function() {
$scope.currtime = new Date();
$scope.timeleft = $scope.endtime-$scope.currtime;
console.log('tick');
};
$timeout(countup, 5);
});
$間隔做這個 – michael