在Angular 2 RC6中,要在事件上更改响应式FormControl的值,可以按照以下步骤进行操作:
import { FormControl, FormGroup, ReactiveFormsModule } from '@angular/forms';
myForm: FormGroup;
myControl: FormControl;
constructor() {
this.myControl = new FormControl();
this.myForm = new FormGroup({
myControl: this.myControl
});
}
<input type="text" [formControl]="myControl">
changeValue() {
this.myControl.setValue("Hello World");
}
<button (click)="changeValue()">Change Value</button>
这样,当点击按钮时,FormControl的值将被更改为"Hello World"。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云