将函数从服务器传递到客户端

发布于 2024-12-28 11:17:23 字数 136 浏览 1 评论 0原文

我最近遇到了 JavaScript 中的 foo.toSource() 选项。这允许函数的序列化。 我想知道通过网络从服务器到客户端传输函数并稍后使用 eval() 执行它们的可能性。

你觉得它真的有用吗?
有没有使用这种范式的框架?

I recently ran into the foo.toSource() option in JavaScript. This allows a serialization of a function.
I was wondering about the possibilities of transferring functions over the networks, from server to client, and executing them at a later time - with eval().

Do you think it's actually useful?
Are there any frameworks using such a paradigm?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深居我梦 2025-01-04 11:17:23

将函数从服务器传递到页面无需 toSource,只需在服务器上生成页面时将其放入代码中,或者在需要时通过 AJAX 请求即可。

Passing functions from the server to a page can be done without toSource, by just putting it in the code when the page is generated on the server, or requesting it via AJAX when needed.

扭转时空 2025-01-04 11:17:23

我看到的唯一用例是:

  1. 每当您发送 .js 文件
  2. JSNOP

您想到的是不可能。所以我们只能发送函数的文本表示,而不是它的上下文或闭包以及所有这些东西。

The only use cases I see are:

  1. whenever you send .js file
  2. JSNOP

The thing you thought about isn't posible. So we can only send the text representation of the function, not it's context or closures and all that stuff.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文