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 SimpleChanges
object to the ngOnChanges
hook.
class SimpleChange {
constructor(previousValue: any, currentValue: any, firstChange: boolean)
previousValue: any
currentValue: any
firstChange: boolean
isFirstChange(): boolean
}
参见
构造函数
属性
属性 | 说明 |
---|---|
previousValue: any | 声明在构造函数中 |
currentValue: any | 声明在构造函数中 |
firstChange: boolean | 声明在构造函数中 |
方法
检查新值是否是首次赋值的。 Check whether the new value is the first value assigned. |
参数没有参数。 返回值
|