0

是否有可能在 ArrayCollection 中获得项目的深度?

4

3 回答 3

0

livedocs

// Get the index of the item with the value ME.
var addedItemIndex:int=myAC.getItemIndex("ME");
于 2010-03-21T16:33:42.977 回答
0

不是答案,我不能发表评论。

来自实时文档: http: //livedocs.adobe.com/flex/3/langref/mx/collections/ArrayCollection.html

ArrayCollection 类是一个包装类,它将数组公开为可以使用 ICollectionView 或 IList 接口的方法和属性访问和操作的集合。

为什么你认为 ArrayCollection 有深度?

我想您可以制作子 ArrayCollections 的 ArrayCollection。如果是这种情况;然后你可以编写一个函数来搜索它的所有子 ArrayCollections。

编辑:我认为您建议的功能中有一些错误。这是我尝试的一个功能:

public function getItemNestLevel2(needle:Object, haystack:Object):Number
{
    for each (var item:Object in haystack)
    {
        if (item == needle)
            return 0;
        if (item is Array || item is ArrayCollection)
        {
            var nestLevel:int = getItemNestLevel2(needle, item);
            if (nestLevel >= 0)
                return nestLevel + 1;
        }
    }
    return -1;
}
于 2010-03-22T02:44:26.813 回答
0

这是我的代码...

public function getItemNestLevel(needle:Object, haystack:Object, level:Number = 0):Number
    {
        //iterate through items
        for each (var item:Object in haystack)
        {
            if (item == needle)
            {
                return level;
            }

            //iterate through item's properties
            for each (var child:Object in item)
            {
                if (child is Array || child is ArrayCollection)
                {
                    var lvl:Number = level + 1;
                    var num:Number = getItemNestLevel(needle, child, lvl);
                    if (num >= 0)
                    {
                        return num;
                    }
                }
            }
        }
        return -1;
    }
于 2010-03-22T10:09:23.060 回答