如何添加动态包装任何函数调用的 JS 代码?
我想在运行时包装任何 JavaScript 调用, 例如,我想写入日志以表明已发生 Func 调用。
这种包装必须适用于任何函数,甚至是那些使用 eval 或原型添加的函数。
I had like to wrap any JavaScript invocation at runtime,
e.g. I had like to write to a log that an invocation of Func has been occurred.
This wrapping must work for any function even those function that has been added using eval or prototyping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您要寻找的是 node-proxy
您无法使用本机 JS 执行此操作。这仅适用于
node.js
。它可能可以调整为适用于在 V8 上运行的任何 js。What your looking for is node-proxy
You can't do this using native JS. This will only work for
node.js
. It can probably be adjusted to work for any js running on V8.如果您要使用
call
方法调用函数,您可以执行以下操作:If you were to call your functions with the
call
method, you could do something like this: