actionscript 3/flex 中过滤后的 ArrayCollection 的长度

发布于 2024-10-03 00:48:46 字数 82 浏览 4 评论 0原文

我需要显示列表组件中的项目数,该组件将过滤后的 ArrayCollection 作为其数据提供者。我没有找到获取过滤集合长度的方法。有人知道吗?谢谢。

I need to display the number of items in a List component that has a filtered ArrayCollection as its data provider. I don't see a way to get the filtered collection's length. Anyone know? Thanks.

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

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

发布评论

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

评论(1

天生の放荡 2024-10-10 00:48:46

考虑代码:

var ac:ArrayCollection = new ArrayCollection([0,1,2,3,4,5,6,7,8,9]);
ac.filterFunction =
    function(item:*):Boolean{
        return item > 3;
    };
ac.refresh();

您使用 ac.length 来获取已过滤的数据长度 (6),并使用 ac.list.length 来获取原始的、未过滤的数据长度 (10)。

Considering the code:

var ac:ArrayCollection = new ArrayCollection([0,1,2,3,4,5,6,7,8,9]);
ac.filterFunction =
    function(item:*):Boolean{
        return item > 3;
    };
ac.refresh();

You use ac.length to get filtered data length (6) and ac.list.length to get raw, unfiltered data length (10).

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