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)

参数

previousValue

Type: any.

currentValue

Type: any.

firstChange

Type: boolean.

属性

属性名类型说明
previousValue声明于构造函数中
currentValue声明于构造函数中
firstChange声明于构造函数中

方法

Check whether the new value is the first value assigned.

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

isFirstChange(): boolean

参数

没有参数。

返回值

boolean