JS如何实现console执行次数

682 ℃

代码如下:

var getFunCallTimes = (function() {
  // 装饰器,在当前函数执行前先执行另一个函数
  function decoratorBefore(fn, beforeFn) {
    return function() {
      var ret = beforeFn.apply(this, arguments)
      // 在前一个函数中判断,不需要执行当前函数
      if (ret !== false) fn.apply(this, arguments)
    }
  }
  // 执行次数
  var funTimes = {}
  // 给fun添加装饰器,fun执行前将进行计数累加
  return function(fun, funName) {
    // 存储的key值
    funName = funName || fun
    // 不重复绑定,有则返回
    if (funTimes[funName]) return funTimes[funName]
    // 绑定
    funTimes[funName] = decoratorBefore(fun, function() {
      // 计数累加
      funTimes[funName].callTimes++
      console.log('count', funTimes[funName].callTimes)
    })
    // 定义函数的值为计数值(初始化)
    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

vuejs前端项目禁止用户调试(Vue项目防止被调试)

console控制台输入有哪些好玩的用法

console.log报Uncaught TypeError: Assignment to constant varia

开发移动端网页如何调用控制台(Eruda、vconsole)

console.log输出图片和ascii

标签: console

上面是“JS如何实现console执行次数”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_2144.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

原生JS如何生成一个表格(根据数据生成表格)
Nginx如何利用proxy_cache模块实现动态缓存
织梦CMS如何解决Wap.php域名绑定
js数组拼接方法concat函数介绍
js如何将数字转换为小数格式字符串