SimpleChange

表示从旧值到新值的一次变更。

Represents a basic change from a previous to a new value.

      
      class SimpleChange {
  constructor(previousValue: any, currentValue: any, firstChange: boolean)
  previousValue: any
  currentValue: any
  firstChange: boolean
  isFirstChange(): boolean
}
    

构造函数

constructor(previousValue: any, currentValue: any, firstChange: boolean)
      
      constructor(previousValue: any, currentValue: any, firstChange: boolean)
    
参数
previousValue any
currentValue any
firstChange boolean

属性

属性说明
previousValue: any 声明于构造函数中
currentValue: any 声明于构造函数中
firstChange: boolean 声明于构造函数中

方法

检查该新值是否从首次赋值得来的。

Check whether the new value is the first value assigned.

isFirstChange(): boolean
      
      isFirstChange(): boolean
    
参数

没有参数。

返回值

boolean