我正在尝试使用已用时间更新按钮。我可以控制台登录计时器,并更新按钮标签一次,但它没有随时间更新:
<button ng-show="location" class="button button-large assertive icon {{buttonIcon}} button-block" ng-click="record()">
{{buttonLabel}}
</button>
$scope.buttonLabel = "stop";
$scope.recordParams.timer = $interval(function(){
var time = getTimeElapsed(initialTime);
$scope.buttonLabel = time;
}, 100);
它将变为'停止',但我不能随时更新它。
答案 0 :(得分:0)
错过了控制器的$ interval