观察员
文档: 观察者 ,多属性观察者 ,观察数组突变 ,动态添加观察者 。
在 properties
块中添加 observer
可以让你观察属性值的变化:
static get properties() {
return {
myProperty: {
observer: '_myPropertyChanged'
}
}
}
// The second argument is optional, and gives you the
// previous value of the property, before the update:
_myPropertyChanged(value, /*oldValue */) { /* ... */ }
在 observers
区块:
static get observers() {
return [
'_doSomething(myProperty)',
'_multiPropertyObserver(myProperty, anotherProperty)',
'_observerForASubProperty(user.name)',
// Below, items can be an array or an object:
'_observerForABunchOfSubPaths(items.*)'
]
}
为属性 otherProperty
动态添加观察者:
// Define a method.
_otherPropertyChanged(value) { /* ... */ }
// Call it when `otherPropety` changes.
this._createPropertyObserver('otherProperty', '_otherPropertyChanged', true);