我可以使用 RubyAMF 向 Flex 发送文件吗?

发布于 2024-09-02 12:40:48 字数 195 浏览 5 评论 0 原文

我正在 Flex 中根据用户绘制的图形生成 PNG 文件。我想将文件发送到 Ruby on Rails 后端,并且我在应用程序的其他部分使用 RubyAMF。

我找到了使用 FileReference 上传文件的方法,该文件使用 HTTP,但我更喜欢使用 RubyAMF 发送(如果可能的话),因为它更有效。

如果可能的话,您建议的方法是什么?

I'm generating a PNG file in Flex from graphics drawn by user. I would like to send the file to Ruby on Rails backend and I'm using RubyAMF in other parts of the application.

I found ways to upload the file using FileReference which uses HTTP but I prefer to send using RubyAMF ,if possible, as it's more efficient.

If this is possible what is your suggested method?

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

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

发布评论

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

评论(1

不…忘初心 2024-09-09 12:40:48

使用 AMF 传输 png 等图像数据并不比普通的旧 HTTP 更有效。事实上,AMF 本身位于 HTTP 之上(在本上下文中),因此是访问图像数据之前要经过的另一层。

如果您确实想要使用 AMF 传输二进制数据(我强烈建议您不要这样做),那么可以使用 ByteArray 类型。 RubyAMF 似乎 支持这种类型。

另请查看此答案了解如何转换该数据在闪存中。

Transferring image data such as png is not more efficient using AMF than plain old HTTP. Indeed, AMF itself sits on top of HTTP (in this context) so is another layer to go through before accessing the image data.

If you really want to use AMF to transfer binary data (and I strongly suggest you don't) then there is the ByteArray type. RubyAMF appears to support this type.

Also check this answer on how to convert this data in flash.

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