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

IterableDifferFactory

提供 IterableDiffer的工厂。

Provides a factory for IterableDiffer.

      
      interface IterableDifferFactory {
  supports(objects: any): boolean
  create<V>(trackByFn?: TrackByFunction<V>): IterableDiffer<V>
}
    

方法

      
      supports(objects: any): boolean
    
参数
objects any
返回值

boolean

      
      create<V>(trackByFn?: TrackByFunction<V>): IterableDiffer<V>
    
参数
trackByFn TrackByFunction
可选. 默认值是 `undefined`.
返回值

IterableDiffer<V>