我使用http://codepen.io/jhasselkus/pen/Efaxw中的教程来创建秒表。
秒表以毫秒为单位显示动作。
在我的情况下,我只需要几秒钟或几分钟。
我认为使用的update-interval
应该在开头。
.controller('MainCtrl', function($scope, $interval) {
$scope.version = angular.version.full;
// The main controller maintains the current time for all stopwatch instances.
$scope.sharedTime = new Date();
$interval(function() {
$scope.sharedTime = new Date();
}, 500);
})
更新间隔在此为500毫秒。
我将其更改为10000或50000,但网站上没有任何更改。需要更改什么才能在几分钟或几秒钟内显示计时器?为什么值“500”的变化不会影响任何东西?