HTML5 Web Worker 如何返回多个字符串?

发布于 2024-11-16 12:33:18 字数 60 浏览 1 评论 0原文

目前,我的 Web Worker 仅以字符串形式返回消息。是否可以返回一个对象?

谢谢你!

At the moment, my Web Worker just returns a message as a string. Is it possible to return an object?

Thank you!

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

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

发布评论

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

评论(1

梦萦几度 2024-11-23 12:33:18

您可以返回任何内容,只要它可以编码为字符串即可。 JSON 在大多数情况下都有效,就像在 AJAX 中一样。您还可以使用 XML 或任何其他格式。

您可以将 Web Worker 视为另一种 AJAX。 AJAX 有一个线程在服务器中运行。 Web Worker 作为一个线程运行在客户端。这是唯一的区别。在这两种情况下,您可以传递的都是文本。因此,只要想想在处理 AJAX 时您会做什么,这就是处理 Web Worker 的方式。

You can return anything, as long as it can be encoded as a string. JSON works in most cases, just like in AJAX. You can also use XML or any other format.

You can think of Web Worker as another kind of AJAX. AJAX has a thread running in the server. Web Worker as a thread running in the client. That's the only difference. What you can pass through is text in both cases. So just think about what you would do when dealing with AJAX, and that's the way to deal with Web Worker.

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