EUI库 - 9 - 数据集合 - 数组集合
ArrayCollection |
当数组内的数据被修改了(增删改),组件能有效的获知
myCollection.addEventListener(eui.CollectionEvent.COLLECTION_CHANGE,this.collectionChangeHandler,this); |
长度 | ArrayCollection.length |
增 |
addItem()
addItemAt()
|
删 |
removeItemAt()
removeAll();
|
改 | replaceItemAt( {}, 3 ) ; |
查 | getItemIndex( item ) ; |