如何检测在选择标签(角度 2)上对 ngModel 的更改?
2022-08-30 05:01:11
我正在尝试检测标记中的更改。在 Angular 1.x 中,我们可能会使用 on 或 using 来解决这个问题,但我还没有了解如何检测 Angular 2 中的变化。ngModel
<select>
$watch
ngModel
ngChange
ngModel
完整示例:http://plnkr.co/edit/9c9oKH1tjDDb67zdKmr9?p=info
import {Component, View, Input, } from 'angular2/core';
import {FORM_DIRECTIVES} from 'angular2/common';
@Component({
selector: 'my-dropdown'
})
@View({
directives: [FORM_DIRECTIVES],
template: `
<select [ngModel]="selection" (ngModelChange)="onChange($event, selection)" >
<option *ngFor="#option of options">{{option}}</option>
</select>
{{selection}}
`
})
export class MyDropdown {
@Input() options;
selection = 'Dog';
ngOnInit() {
console.log('These were the options passed in: ' + this.options);
}
onChange(event) {
if (this.selection === event) return;
this.selection = event;
console.log(this.selection);
}
}
正如我们所看到的,如果我们从下拉列表中选择一个不同的值,我们的更改和视图中的内插表达式将反映这一点。ngModel
如何获得有关类/控制器中此更改的通知?