可以让 Flex 使用来自服务器的远程对象的自定义 ArrayCollection 吗?

发布于 2024-12-09 08:23:20 字数 212 浏览 1 评论 0原文

我正在考虑编写一个 ArrayCollection 的子类,类似于 ClearToolkit 的子类,它可以在从 BlazeDS 返回时智能地管理我的远程对象。

我想知道是否可以让 Flex 将我的对象集合放入我自己的自定义集合中,而不是默认为 ArrayCollection?如果没有,我需要从它所在的集合中取出所有内容,以便填充我自己的集合。没什么大不了的,但如果可能的话我想避免这种情况。

I am thinking of writing a subclass of ArrayCollection, similar to ClearToolkit's that can be smart about managing my remote objects when coming back from BlazeDS.

I am wondering if it is possible to get Flex to put my collection of objects in my own custom collection instead of defaulting to ArrayCollection? If not, I'll need to pull everything out of the collection it comes in in order to populate my own. Not a huge deal, but its something I'd like to avoid if possible.

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

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

发布评论

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

评论(3

梨涡 2024-12-16 08:23:20

是的,这是可能的。事实上,这就是我们在 dpHibernate 中创建托管或分页集合的方式。

这里有一篇博客文章讨论了这是如何运作的。

Yes, it's possible. In fact, that's how we create managed or paginated collections in dpHibernate.

There's a blog post here which talks about how this works.

撧情箌佬 2024-12-16 08:23:20

在服务器端,BlazeDS 将 Java 集合包装到 flex.messaging.io.ArrayCollection 对象,然后序列化此类。在 Flex 端,类 mx.collections.ArrayCollection 注册到类 flex.messaging.io.ArrayCollection。

在您的 Flex 应用程序中,您可以尝试像这样注册您自己的类:registerClassAlias("somepackage.YourArrayCollection", ArrayCollection) 并查看它是否有效。 YourArrayCollection 应该公开源对象的 get/set 对,就像原始的 ArrayCollection 类一样。

On the server side, BlazeDS is wrapping the Java collections to flex.messaging.io.ArrayCollection objects and after that is serializing this class. On the Flex side, the class mx.collections.ArrayCollection is registered with the class flex.messaging.io.ArrayCollection.

In your Flex application, you may try to register your own class like that: registerClassAlias("somepackage.YourArrayCollection", ArrayCollection) and see if it works. YourArrayCollection should expose a get/set pair for the source object, like the original ArrayCollection class.

揪着可爱 2024-12-16 08:23:20

我不确定这就是您的意思,但您始终可以使用 as 关键字在 AS3 中键入强制转换。

I'm not sure that's what you mean, but you can always type cast in AS3 using the as keyword.

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