闪存中的同步xhr

发布于 2025-01-03 00:03:01 字数 47 浏览 1 评论 0原文

是否可以从 flash 进行同步 xhr 调用? 你如何在动作脚本中做到这一点?

Is it possible to make a synchronous xhr call from flash?
How do you do this in actionscript?

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

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

发布评论

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

评论(1

凤舞天涯 2025-01-10 00:03:01

必须满足两个条件:

  1. 您必须对程序的用户毫不留情。 (在一些非常常见的操作系统上,这将使所有进程完全停止,CPU 上的风扇会将塔慢慢推离原来的位置)。

  2. 应该允许 Flash 调用 JavaScript。

存在某些限制:纯二进制数据可能会出现乱码,因为 JavaScript 没有工具来处理它。

如果两者都不让您害怕 - 使用ExternalInterface 同步调用XMLHttpRequest。

Two condition must hold true:

  1. You must show no mercy to the users of your program. (On some very common operating system this will put all processes to a full stop and the fan on the CPU will propel the tower slowly away from the place it was in).

  2. Flash should be allowed to call JavaScript.

Certain limitations apply: plain binary data may arrive garbled because JavaScript has no tools to deal with it.

If neither scares you - use ExternalInterface to call XMLHttpRequest synchronously.

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