填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

IterableChangeRecord

代表条目变更信息的记录。

Record representing the item change information.

      
      interface IterableChangeRecord<V> {
  currentIndex: number | null
  previousIndex: number | null
  item: V
  trackById: any
}
    

属性

属性说明
currentIndex: number | null只读

此条目在 Iterable 中的当前索引,如果已删除则为 null。

Current index of the item in Iterable or null if removed.

previousIndex: number | null只读

此条目在 Iterable 中以前的索引,如果是新添加的则为 null。

Previous index of the item in Iterable or null if added.

item: V只读

本条目。

The item.

trackById: any只读

通过 TrackByFunction 计算出的标识进行跟踪。

Track by identity as computed by the TrackByFunction.