本文介绍了如何从该函数中获取函数名称?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从该函数内部访问函数名称?
//寄生继承
var ns.parent.child = function(){
var parent =新的ns.parent();
parent.newFunc = function(){
}
返回父类;
var ns.parent = function(){
//此时,我想知道那个孩子是谁,称为父母
//即
}
var obj = new ns.parent.child();
解决方案
在ES5中,最好的做法是: / p>
函数functionName(fun){
var ret = fun.toString();
ret = ret.substr('function'.length);
ret = ret.substr(0,ret.indexOf('('));
return ret;
}
使用 Function.caller
是非标准的。 Function.caller
和 arguments.callee
在严格模式下都被禁止。
在ES6中,您可以使用 myFunction.name
。
注意:请注意,某些JS缩小器可能会丢弃函数名称,以便更好地压缩;您可能需要调整其设置以避免这种情况。
How can I access a function name from inside that function?
// parasitic inheritance
var ns.parent.child = function() {
var parent = new ns.parent();
parent.newFunc = function() {
}
return parent;
}
var ns.parent = function() {
// at this point, i want to know who the child is that called the parent
// ie
}
var obj = new ns.parent.child();
解决方案
In ES5, the best thing to do is:
function functionName(fun) {
var ret = fun.toString();
ret = ret.substr('function '.length);
ret = ret.substr(0, ret.indexOf('('));
return ret;
}
Using Function.caller
is non-standard. Function.caller
and arguments.callee
are both forbidden in strict mode.
Edit: nus's regex based answer below achieves the same thing, but has better performance!
In ES6, you can just use myFunction.name
.
Note: Beware that some JS minifiers might throw away function names, to compress better; you may need to tweak their settings to avoid that.
这篇关于如何从该函数中获取函数名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!