How do you find out the caller function in JavaScript when use strict is enabled?

后端 未结 5 1432
谎友^
谎友^ 2020-12-01 04:53

Is it possible to see the callee/caller of a function when use strict is enabled?

相关标签:
5条回答
  • 2020-12-01 05:36

    You can get a stack trace using:

    console.trace()
    

    but this is likely not useful if you need to do something with the caller.

    See https://developer.mozilla.org/en-US/docs/Web/API/Console/trace

    0 讨论(0)
  • 2020-12-01 05:45
      functionName() {
        return new Error().stack.match(/ at (\S+)/g)[1].get(/ at (.+)/);
      }
    
      // Get - extract regex
      String.prototype.get = function(pattern, defaultValue = "") {
        if(pattern.test(this)) {
          var match = this.match(pattern);
          return match[1] || match[0];
        }
        return defaultValue; // if nothing is found, the answer is known, so it's not null
      }
    
    0 讨论(0)
  • 2020-12-01 05:49

    For what it's worth, I agree with the comments above. For whatever problem you're trying to solve, there are usually better solutions.

    However, just for illustrative purposes, here's one (very ugly) solution:

    'use strict'
    
    function jamie (){
        var callerName;
        try { throw new Error(); }
        catch (e) { 
            var re = /(\w+)@|at (\w+) \(/g, st = e.stack, m;
            re.exec(st), m = re.exec(st);
            callerName = m[1] || m[2];
        }
        console.log(callerName);
    };
    
    function jiminyCricket (){
       jamie();
    }
    
    jiminyCricket(); // jiminyCricket
    

    I've only tested this in Chrome, Firefox, and IE11, so your mileage may vary.

    0 讨论(0)
  • 2020-12-01 05:53

    Please note that this should not be used in production. This is an ugly solution, which can be helpful for debugging, but if you need something from the caller, pass it as argument or save it into a accessible variable.

    The short version of @p.s.w.g answer(without throwing an error, just instantiating one):

        let re = /([^(]+)@|at ([^(]+) \(/g;
        let aRegexResult = re.exec(new Error().stack);
        sCallerName = aRegexResult[1] || aRegexResult[2];
    

    Full Snippet:

    'use strict'
    
    function jamie (){
        var sCallerName;
        {
            let re = /([^(]+)@|at ([^(]+) \(/g;
            let aRegexResult = re.exec(new Error().stack);
            sCallerName = aRegexResult[1] || aRegexResult[2];
        }
        console.log(sCallerName);
    };
    
    function jiminyCricket(){
       jamie();
    };
    
    jiminyCricket(); // jiminyCricket

    0 讨论(0)
  • 2020-12-01 05:53

    It does not worked for me Here is what I finally do, just in case it helps someone

    function callerName() {
      try {
        throw new Error();
      }
      catch (e) {
        try {
          return e.stack.split('at ')[3].split(' ')[0];
        } catch (e) {
          return '';
        }
      }
    
    }
    function currentFunction(){
      let whoCallMe = callerName();
      console.log(whoCallMe);
    }
    
    0 讨论(0)
提交回复
热议问题