如何使用 RubyAmf 发送多个对象

发布于 2024-08-24 21:43:49 字数 297 浏览 4 评论 0原文

我是 RubyAf 的新手。我注意到您可以使用 RubyAmf 发送一个对象,如下所示:

format.amf { render :amf => @user}

效果很好。但当我有两个或更多对象时,我不确定该怎么做:

@projects = @user.projects
@tasks = @user.tasks

如何发送 @projects 和 @tasks 而不必从 Flex 执行多个请求。

谢谢,

I'm new to RubyAmf. I noticed that you can send an object with RubyAmf as follows:

format.amf { render :amf => @user}

Which works fine. But I wasn't sure what to do what when I have two ,or more, objects:

@projects = @user.projects
@tasks = @user.tasks

How can I can send @projects and @tasks without having to do multiple requests from flex.

Thanks,

Tam

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

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

发布评论

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

评论(1

剩一世无双 2024-08-31 21:43:49

根据RubyAMF代码有支持数组序列化。所以下面的代码应该可以工作。

@projects = @user.projects
format.amf { render :amf => @projects}

如果您想同时发送项目任务,您可以将它们以哈希形式发回。

format.amf { render :amf =>{:projects => @user.projects, :tasks => @user.tasks} }

警告:我还没有测试过这段代码。我根据 gem 代码推断功能。

As per the RubyAMF code there is support array serialization. So the following code should work.

@projects = @user.projects
format.amf { render :amf => @projects}

If you want to send both projects and tasks together you can send them back in a hash.

format.amf { render :amf =>{:projects => @user.projects, :tasks => @user.tasks} }

Caveat: I haven't tested this code. I am inferring the functionality based on the gem code.

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