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
}
构造函数
参数
|
属性
属性 | 说明 |
---|---|
previousValue: any | 声明于构造函数中 |
currentValue: any | 声明于构造函数中 |
firstChange: boolean | 声明于构造函数中 |
方法
检查该新值是否从首次赋值得来的。 Check whether the new value is the first value assigned. |
参数没有参数。 返回值
|