反应形式 angular 形式组
reactive forms angular form group
为什么我不能在设置值之前写入输入?
html
<form action="" [formGroup]="titleForm">
<input class="note-title" type="text" formControlName="title">
</form>
打字稿
titleForm : FormGroup = new FormGroup(
{'title':new FormControl}
);
this.titleForm.patchValue({
title:"hello"
});
}
输入值修改成功但无法写入输入
将 formGroup 重写为此
titleForm : FormGroup = new FormGroup({
title: new FormControl('')
});
为什么我不能在设置值之前写入输入?
html
<form action="" [formGroup]="titleForm">
<input class="note-title" type="text" formControlName="title">
</form>
打字稿
titleForm : FormGroup = new FormGroup(
{'title':new FormControl}
);
this.titleForm.patchValue({
title:"hello"
});
}
输入值修改成功但无法写入输入
将 formGroup 重写为此
titleForm : FormGroup = new FormGroup({
title: new FormControl('')
});