最佳答案
我试图在 <select>
标记中检测 ngModel
上的变化。在角度1.x 中,我们可以使用 ngModel
上的 $watch
或者使用 ngChange
来解决这个问题,但是我还没有理解如何在角度2中检测到 ngModel
的变化。
Full Example: 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
就会发生变化,而视图中的内插表达式反映了这一点。
如何在类/控制器中获得此更改的通知?