考虑以下示例。
var obj = function(){};
function apply(target, obj) {
if (target && obj && typeof obj == "object") {
for (var prop in obj) {
target[prop] = obj[prop];
}
}
return target;
}
apply(obj.prototype, {
firstFunction: function (){
this.secondFunction();
},
secondFunction: function (){
// how do I know what function called me here?
console.log("Callee Name: '" + arguments.callee.name + "'");
console.log("Caller Name: '" + arguments.callee.caller.name + "'");
}
});
var instance = new obj();
instance.firstFunction();
更新
这两个答案真的很棒。谢谢你。然后我研究了在对象中调用递归或父函数的问题,并在这里找到了解决方案。这将允许我在不使用 arguments.callee/caller 属性的情况下检索函数名称。
https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/function