从Javascript函数引用中获取名称String?

时间:2012-05-16 17:59:48

标签: javascript

我想做与Get JavaScript function-object from its name as a string?

相反的事情

即,给定:

function foo()
{}

function bar(callback)
{
  var name = ???; // how to get "foo" from callback?
}

bar(foo);

如何获取引用背后的函数名称?

8 个答案:

答案 0 :(得分:28)

如果您无法使用myFunction.name,则可以:

// Add a new method available on all function values
Function.prototype.getName = function(){
  // Find zero or more non-paren chars after the function start
  return /function ([^(]*)/.exec( this+"" )[1];
};

或者对于不支持name属性的现代浏览器(它们是否存在?)直接添加:

if (Function.prototype.name === undefined){
  // Add a custom property to all function values
  // that actually invokes a method to get the value
  Object.defineProperty(Function.prototype,'name',{
    get:function(){
      return /function ([^(]*)/.exec( this+"" )[1];
    }
  });
}

答案 1 :(得分:15)

var name = callback.name;

MDN

  

name属性返回函数的名称,或匿名函数的空字符串:

请注意,此属性不是标准

Live DEMO

答案 2 :(得分:4)

function bar(callback){
    var name=callback.toString();
    var reg=/function ([^\(]*)/;
    return reg.exec(name)[1];
}

>>> function foo() { };
>>> bar(foo);
"foo"
>>> bar(function(){});
""

答案 3 :(得分:2)

您可以使用以下方法提取对象和函数名称:

function getFunctionName()
{
    return (new Error()).stack.split('\n')[2].split(' ')[5];
}

例如:

function MyObject()
{
}

MyObject.prototype.hi = function hi()
{
    console.log(getFunctionName());
};

var myObject = new MyObject();
myObject.hi(); // outputs "MyObject.hi"

答案 4 :(得分:1)

var x = function fooBar(){};
console.log(x.name);
// "fooBar"

答案 5 :(得分:0)

尝试访问.name属性:

callback.name 

答案 6 :(得分:0)

如果您正在寻找特定对象事件的功能,这可能会有所帮助:

var a = document.form1
a.onsubmit.name

答案 7 :(得分:0)

对我来说,只需稍加修改(在父母之前添加\),这项工作:

if (Function.prototype.name === undefined){
  // Add a custom property to all function values
  // that actually invokes a method to get the value
  Object.defineProperty(Function.prototype,'name',{
    get:function(){
      return /function ([^\(]*)/.exec( this+"" )[1];
    }
  });
}