获取静态javascript函数的调用者名称

时间:2015-09-04 18:37:51

标签: javascript static ecmascript-6

我正在尝试获取调用另一个函数的函数的名称。

class ABC {
  static method_A() {
    ABC.method_B();
  }

  static method_B() {
    console.log('B method');
    //Need to get the name of the method that called this method (e.g. method_A())
  }
}

我环顾四周,有一种deprecated方式  和non-standard方式。但两者都不适合我,当我尝试使用其中任何一个时,我收到undefined错误。只是想确定是因为它们是static方法吗?

0 个答案:

没有答案