闪存中的同步xhr
是否可以从 flash 进行同步 xhr 调用? 你如何在动作脚本中做到这一点?
Is it possible to make a synchronous xhr call from flash?
How do you do this in actionscript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必须满足两个条件:
您必须对程序的用户毫不留情。 (在一些非常常见的操作系统上,这将使所有进程完全停止,CPU 上的风扇会将塔慢慢推离原来的位置)。
应该允许 Flash 调用 JavaScript。
存在某些限制:纯二进制数据可能会出现乱码,因为 JavaScript 没有工具来处理它。
如果两者都不让您害怕 - 使用ExternalInterface 同步调用XMLHttpRequest。
Two condition must hold true:
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).
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.