溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

javascript中統(tǒng)計函數(shù)執(zhí)行次數(shù)的方法是什么

發(fā)布時間:2020-08-31 13:42:27 來源:億速云 閱讀:355 作者:小新 欄目:web開發(fā)

這篇文章主要介紹javascript中統(tǒng)計函數(shù)執(zhí)行次數(shù)的方法是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

一、統(tǒng)計函數(shù)執(zhí)行次數(shù)

常規(guī)的方法可以使用 console.log 輸出來肉眼計算有多少個輸出

不過在Chrome中內(nèi)置了一個 console.count 方法,可以統(tǒng)計一個字符串輸出的次數(shù)。我們可以利用這個來間接地統(tǒng)計函數(shù)的執(zhí)行次數(shù)

function someFunction() {
 console.count('some 已經(jīng)執(zhí)行');
}
function otherFunction() {
 console.count('other 已經(jīng)執(zhí)行');
}
someFunction(); // some 已經(jīng)執(zhí)行: 1
someFunction(); // some 已經(jīng)執(zhí)行: 2
otherFunction(); // other 已經(jīng)執(zhí)行: 1
console.count(); // default: 1
console.count(); // default: 2

不帶參數(shù)則為 default 值,否則將會輸出該字符串的執(zhí)行次數(shù),觀測起來還是挺方便的

當然,除了輸出次數(shù)之外,還想獲取一個純粹的次數(shù)值,可以用裝飾器將函數(shù)包裝一下,內(nèi)部使用對象存儲調(diào)用次數(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;
 
 // 不重復(fù)綁定,有則返回
 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ù)的調(diào)用次數(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ù)的方法是什么的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI