gpt4 book ai didi

javascript - 替换 eval 的最佳方法是什么?

转载 作者:数据小太阳 更新时间:2023-10-29 04:44:54 33 4
gpt4 key购买 nike

我处理一个 JavaScript 代码来改进。这里的想法是动态调用函数。

这里是要替换的代码:

//this.actionCallback return the name of the function to invoke
eval(this.actionCallback + "('testArgument')");

替换它的最佳方法是什么:

这样:

window[this.actionCallback]("testArgument");

或者这样:

var actionToCall = this.actionCallback+'("testArgument");';
var functionToInvoke = new Function(actionToCall);
functionToInvoke();

或者有更好的方法吗?

最佳答案

第一种方法是一种更好的方法 - new Function(actionToCall) 只是变相的 eval。

关于javascript - 替换 eval 的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5993693/

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