【Angular】在Angular中监听某个值的变化
在 Angular 中可以用 getter 来监听某个值的变化,类似于 Vue 中的 watch
·
使用getter
在 Angular
中可以用 getter
来监听某个值的变化,类似于 Vue
中的 watch
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
_inputVal;
set inputVal(val) {
this._inputVal = val;
this.inputChange();
};
get inputVal() {
return this._inputVal;
}
inputChange(val) {
console.log(val);
}
}
更多推荐
已为社区贡献3条内容
所有评论(0)