>我在模态控制器中有几个$timeout
表达式
App.controller('ModalCtrl', function ($scope, $timeout) {
for (var i = 0; i < 10; i++) {
(function () {
var timer = $timeout(function () {
console.log('timer')
}, 1000);
})()
}
})
调用模态时,我需要清除所有计时器:
App.controller('MainCtrl', function ($scope, $modal, $timeout) {
$scope.showMap = function () {
var modal = $modal.open({
templateUrl: 'modalap.html',
controller: 'modalCtrl',
})
modal.result.then(function () { //fires when modal is resolving
}, function () { //fires when modal is invoking
});
} })
我该怎么做?
PS 很抱歉代码格式错误。我不知道为什么,但我不能更好地格式化它。我在这里复制了代码:
$timeout
服务返回可用于取消超时的Promise
对象。
// Start a timeout
var promise = $timeout(function() {}, 1000);
// Stop the pending timeout
$timeout.cancel(promise);
要取消所有挂起的超时,您需要维护一个承诺列表,并在打开模态时取消完整列表。
您也可以让他们通过这样做来取消自己...
(function(){
var timer = $timeout(function(){
console.log(timer.$$timeoutId);
$timeout.cancel(timer);
}, 1000);
})();