actionscript 3/flex 中过滤后的 ArrayCollection 的长度
我需要显示列表组件中的项目数,该组件将过滤后的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑代码:
您使用
ac.length
来获取已过滤的数据长度 (6),并使用ac.list.length
来获取原始的、未过滤的数据长度 (10)。Considering the code:
You use
ac.length
to get filtered data length (6) andac.list.length
to get raw, unfiltered data length (10).