gpt4 book ai didi

javascript - 获取调用的方法名和传入的参数

转载 作者:行者123 更新时间:2023-11-28 07:09:31 26 4
gpt4 key购买 nike

有没有办法在javascript中获取方法名称并传入参数?

function say(param){
alert(param);
}

所以当调用 say 方法时,

say("helloworld")

我会得到方法:'say'和参数:{'helloworld'}

最佳答案

 function say() {
var args = Array.prototype.slice.call(arguments);

console.log("method:" + arguments.callee.name + " parameters: {" + JSON.stringify(args) + "}");
}

关于javascript - 获取调用的方法名和传入的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31438433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com