您好,登錄后才能下訂單哦!
angular.js的$timeout指令對window.setTimeout做了一個封裝,它的返回值是一個promise對象.當定義的時間到了以后,這個promise對象就會被resolve,回調函數就會被執行.
如果需要取消一個timeout,調用$timeout.cancel(promise)方法.
用法:
$timeout(fn, [delay], [invokeApply]);
fn: 回調函數(必填)
delay: number類型.延遲的時間(非必填),如果不填,表示等線程空下來以后就執行.比如當頁面被渲染完成后.
invokeApply: 布爾值.是否需要進行臟值檢測(非必填),不填默認為false,如果設置為true,則fn回調會被包在$scope.$apply()中執行
返回值: 返回一個promise對象.當定義的時間到了以后,這個promise對象就會被resolve.resolve的值就是fn回調函數的返回值
方法:
$timeout.cancel([promise])
promise: 一個由$timeout()所創建的promise對象.(非必填).調用cancel()以后,這個promise對象就會被reject.
返回值: 如果$timeout()的回調還沒有被執行,那就取消成功.返回true
下面來簡單的測試一下:
var timeoutApp = angular.module('timeoutApp',[]); timeoutApp.run(function($timeout){ var a = $timeout(function(){ console.log('執行$timeout回調'); return 'angular' },1000); a.then(function(data){ console.log(data) },function(data){ console.log(data) }); //$timeout.cancel(a); })
運行以后看到控制臺打印:
執行$timeout回調
angular
如果我打開注釋,執行.cancel()方法,那么$timeout的回調就不會被執行,它返回的promise被reject,控制臺打印:
canceled
下面做個很實用的小demo: 延遲下拉菜單: 鼠標放到button上的時候,延遲500毫秒顯示下拉菜單,當鼠標離開button的時候,延遲500毫秒隱藏下拉菜單,如果鼠標是進入了下拉菜單部分,那么就不隱藏下拉菜單.如果鼠標離開了下拉菜單,延遲500毫秒隱藏下拉菜單,如果鼠標是進入了button,那么還是不隱藏下拉菜單
html:
<!DOCTYPE html> <html ng-app="timeoutApp"> <head> <title>$timeout服務</title> <meta charset="utf-8"> <link rel="stylesheet" href="../bootstrap.css" rel="external nofollow" /> <script src="../angular.js"></script> <script src="script.js"></script> <style type="text/css"> * { font-family:'MICROSOFT YAHEI' } </style> </head> <body > <div ng-controller="myCtrl"> <div class="dropdown" dropdown > <button class="btn btn-default dropdown-toggle" type="button" ng-mouseenter = "showMenu()" ng-mouseleave = "hideMenu()"> Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu" ng-show="ifShowMenu" ng-mouseenter = "showMenu()" ng-mouseleave = "hideMenu()"> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Action</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Another action</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Something else here</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Separated link</a></li> </ul> </div> </div> </body> </html>
js:
var timeoutApp = angular.module('timeoutApp',[]); timeoutApp.controller('myCtrl',function($scope){ $scope.ifShowMenu = false; }); timeoutApp.directive('dropdown',function($timeout){ return { restrict:"EA", link:function(scope,iele,iattr){ scope.showMenu = function(){ $timeout.cancel(scope.t2); scope.t1 = $timeout(function(){ scope.ifShowMenu = true },500) }; scope.hideMenu = function(){ $timeout.cancel(scope.t1); scope.t2 = $timeout(function(){ scope.ifShowMenu = false },500) }; } } })
代碼應該很好理解: 就是進入button和進入ul下拉菜單的時候,都定義一個timeout回調(過500毫秒以后顯示下拉菜單),同時取消隱藏下拉菜單的回調.而離開button和ul的時候相反.
代碼地址: https://github.com/OOP-Code-Bunny/angular/tree/master/%24timeout
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。