如何编写一个接受回调函数的函数并在“安全”的环境中运行它?方式?
我想写一个这样的函数:
function doGoodJob(someId, callBackfunction){
// some stuff with someId
// todo: RUN callBackFunction here
}
他们说 eval 在代码注入方面是“危险的”。
那么,编写接受回调函数并安全运行它的 JavaScript 函数的最佳实践是什么?
I want to write such a function:
function doGoodJob(someId, callBackfunction){
// some stuff with someId
// todo: RUN callBackFunction here
}
They say eval is 'dangerous' in terms of code injection.
so, what is the best practice to write a JavaScript function that accepts a call-back function and runs it securely?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您的回调是字符串还是实际函数?
如果它是一个函数。
如果它是一个字符串,您可以使用 Function 构造函数。
或者两者都测试一下..
Is your callback a string or an actual function ?
If its a function..
If its a string you can use the Function constructor.
Or test for both..
这应该有效:
快速小提琴: http://jsfiddle.net/pS67X/
This should work:
quick fiddle: http://jsfiddle.net/pS67X/
虽然这个话题已经晚了,但我只是想补充一些东西。
上述解决方案适用于警报或将函数作为参数传递,但不适用于以下情况。
相反,如果使用 eval(callbackFunction) ,如下所示
though late to this topic, just wanted to adde some thing.
Above solution works for alert or passing function as argument, but not in the below case.
instead if use eval(callbackFunction) like below
回调函数意味着函数作为参数传递,就像我们传递变量一样。
当调用回调函数时,我们可以像下面这样使用它:
Callback function means function pass as an argument like we pass variable.
When calling the callback function, we could use it like below: