角2のchange
イベントとは何ですか?それはいつ発送され、どうすれば使えますか?
I.e.私は(change)="update()"
経由で次のコードを購読していますか?角2の `change`イベントとは何か
http://plnkr.co/edit/mfoToOSLU6IU2zr0A8OB?p=preview
import {Component, View, Input, Output, EventEmitter, OnChanges} from '@angular/core'
@Component({
selector: 'inner-component',
template: `
<label><input type="checkbox" [(ngModel)]="data.isSelected"> Selected</label>
`
})
export class InnerComponent {
data = { isSelected: false };
}
@Component({
selector: 'my-app',
template: `
<p><inner-component (change)="update()"></inner-component></p>
<p>The component was updated {{count}} times</p>
`,
directives: [InnerComponent]
})
export class AppComponent {
count = 0;
update() {
++this.count;
}
}
私はそれが動作しますので、驚い:それは、ロギングとイベントによって確認することができます。角度からのバグのような感じ。 – maxisam