本文介绍了合并2 arraycollection - Flex 3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一个数组集合将包含值0 ... 30和对象名称sxx,另一个数组集合从数据库中检索。 / b>
解决方案1:
解决方案
$ b $ $ $ $
$ private $ b $ )
{
a.addItem(item);
}
return a;
$ b解决方案2:
$ b pre>
$ b $ $ $ $
$ private $ b $ )
{
a.addItem(item);
}
return a;
$ b解决方案2:
$ b pre>
var a:ArrayCollection = new ArrayCollection([1,2]);
var b:ArrayCollection = new ArrayCollection([3,4]);
a = new ArrayCollection(a.toArray()。concat(b.toArray()));
玩得开心!
:P
How I actually merge both together?
one arraycollection would contain value of 0...30 with Object name "sxx" with another arraycollection retrieve from database.
解决方案
HI!
Solution 1:
private function mergeArrays(a:ArrayCollection, b:ArrayCollection):ArrayCollection
{
for each(var item:Object in b)
{
a.addItem(item);
}
return a;
}
Solution 2:
var a:ArrayCollection = new ArrayCollection([1,2]);
var b:ArrayCollection = new ArrayCollection([3,4]);
a = new ArrayCollection(a.toArray().concat(b.toArray()));
Have fun!:P
这篇关于合并2 arraycollection - Flex 3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-16 21:07