The $timeout service returns a Promise object which can be used to cancel the timeout.// Start a timeoutvar promise = $timeout(function() {}, 1000);// Stop the pending timeout$timeout.cancel(promise);要取消所有挂起的超时,您需要维护一个承诺列表,并在打开模态时取消完整列表.To cancel all pending timeouts, you need to maintain a list of promises and cancel the complete list when you open the modal. 这篇关于AngularJS.调用 angular-ui 模态时清除 $timeout的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-06 20:57