我有一个 feathersui 列表组件,我想知道如果列表中当前不存在新项目,是否有办法将它取消移动到列表的开头。我想做的是类似下面的事情(大部分已经完成,除了'如果它不存在部分):
for(var i:int = 0; i < resultsArray.length; i++)
{
if(resultsArray[i].notification_id DOES NOT EXIST IN itemListArray)
{
this.itemListArray.unshift({notificationID: resultsArray[i].notification_id,
notificationText: resultsArray[i].message,
notificationType: resultsArray[i].notification_type,
notificationDest: resultsArray[i].destination,
notificationDestID: resultsArray[i].destination_id,
dateAdded: resultsArray[i].date_added});
}
}
我知道 PHPin_array
如此希望有人知道 AS3 等价物。
谢谢