Get Object or Associative array's length

本文介绍了在Flex中通过自定义函数获取对象长度的方法,解决了对象属性缺失和内部标识符计数的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

If you need to find the length of an object, and I mean the number of children of the specified object, use the following function/method:

public static function getLength(o:Object):uint
{
    var len:uint = 0;
    for (var item:* in o)
        if (item != "mx_internal_uid")
            len++;
    return len;
}

 

In Flex there is no method to get the length of an object and if you look at an object or an associative array in debugging mode you’ll that length property is not present or is 0 for associative arrays.

I know that there are different ways of arranging data in indexed array structures to have the length property but sometimes maybe you want to know if the object has at least a child or how many children it has.

There is another issue… some arrays/objects used mostly as data providers do get an internal property called mx_internal_uid, so you may not want to count that as a child:

if (item != "mx_internal_uid")

 

More about mx_internal_uid here (livedocs) and in a future article.

 

转载自 : http://www.flexer.info/2008/07/31/how-to-find-an-objects-length/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值