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

SimpleChange

表示指令实例上单个属性从先前值到新值的基本变更对象。在 SimpleChanges对象中作为值传递给 ngOnChanges 挂钩。

Represents a basic change from a previous to a new value for a single property on a directive instance. Passed as a value in a SimpleChangesobject to the ngOnChanges hook.

      
      class SimpleChange {
  constructor(previousValue: any, currentValue: any, firstChange: boolean)
  previousValue: any
  currentValue: any
  firstChange: boolean
  isFirstChange(): 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
    
参数

没有参数。

返回值

boolean