這篇文章主要介紹javascript中統(tǒng)計函數(shù)執(zhí)行次數(shù)的方法是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司從2013年開始,先為德城等服務建站,德城等地企業(yè),進行企業(yè)商務咨詢服務。為德城企業(yè)網站制作PC+手機+微官網三網同步一站式服務解決您的所有建站問題。一、統(tǒng)計函數(shù)執(zhí)行次數(shù)
常規(guī)的方法可以使用 console.log 輸出來肉眼計算有多少個輸出
不過在Chrome中內置了一個 console.count 方法,可以統(tǒng)計一個字符串輸出的次數(shù)。我們可以利用這個來間接地統(tǒng)計函數(shù)的執(zhí)行次數(shù)
function someFunction() { console.count('some 已經執(zhí)行'); } function otherFunction() { console.count('other 已經執(zhí)行'); } someFunction(); // some 已經執(zhí)行: 1 someFunction(); // some 已經執(zhí)行: 2 otherFunction(); // other 已經執(zhí)行: 1 console.count(); // default: 1 console.count(); // default: 2
不帶參數(shù)則為 default 值,否則將會輸出該字符串的執(zhí)行次數(shù),觀測起來還是挺方便的
當然,除了輸出次數(shù)之外,還想獲取一個純粹的次數(shù)值,可以用裝飾器將函數(shù)包裝一下,內部使用對象存儲調用次數(shù)即可
var getFunCallTimes = (function() { // 裝飾器,在當前函數(shù)執(zhí)行前先執(zhí)行另一個函數(shù) function decoratorBefore(fn, beforeFn) { return function() { var ret = beforeFn.apply(this, arguments); // 在前一個函數(shù)中判斷,不需要執(zhí)行當前函數(shù) if (ret !== false) { fn.apply(this, arguments); } }; } // 執(zhí)行次數(shù) var funTimes = {}; // 給fun添加裝飾器,fun執(zhí)行前將進行計數(shù)累加 return function(fun, funName) { // 存儲的key值 funName = funName || fun; // 不重復綁定,有則返回 if (funTimes[funName]) { return funTimes[funName]; } // 綁定 funTimes[funName] = decoratorBefore(fun, function() { // 計數(shù)累加 funTimes[funName].callTimes++; console.log('count', funTimes[funName].callTimes); }); // 定義函數(shù)的值為計數(shù)值(初始化) funTimes[funName].callTimes = 0; return funTimes[funName]; } })(); function someFunction() { } function otherFunction() { } someFunction = getFunCallTimes(someFunction, 'someFunction'); someFunction(); // count 1 someFunction(); // count 2 someFunction(); // count 3 someFunction(); // count 4 console.log(someFunction.callTimes); // 4 otherFunction = getFunCallTimes(otherFunction); otherFunction(); // count 1 console.log(otherFunction.callTimes); // 1 otherFunction(); // count 2 console.log(otherFunction.callTimes); // 2
如何控制函數(shù)的調用次數(shù)
也可以通過閉包來控制函數(shù)的執(zhí)行次數(shù)
function someFunction() { console.log(1); } function otherFunction() { console.log(2); } function setFunCallMaxTimes(fun, times, nextFun) { return function() { if (times-- > 0) { // 執(zhí)行函數(shù) return fun.apply(this, arguments); } else if (nextFun && typeof nextFun === 'function') { // 執(zhí)行下一個函數(shù) return nextFun.apply(this, arguments); } }; } var fun = setFunCallMaxTimes(someFunction, 3, otherFunction); fun(); // 1 fun(); // 1 fun(); // 1 fun(); // 2 fun(); // 2
以上是javascript中統(tǒng)計函數(shù)執(zhí)行次數(shù)的方法是什么的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。