这是我的数组数组集合
o = JSON.parse(event.result.toString());
jsonarray = new ArrayCollection(o as Array);
在这个数组中我有一个重复的产品名称的值,所以我想删除重复。\我的代码在这里,它不工作,请让我知道,我是一个灵活的初学者。
function removeDuplicates(item:Object):Boolean
{
var returnValue:Boolean = false;
if (!myObject.hasOwnProperty(item.ProductName))
{
myObject[item.ProductName] = item;
returnValue = true;
}
prodArray.push(myObject);
return returnValue;
}
1条答案
按热度按时间cfh9epnr1#
调用下面给出的filterCollection方法,并在该方法中使用filterfunction删除重复项