gpt4 book ai didi

html - 重置 Angular react 形式不会更新选择选项

转载 作者:行者123 更新时间:2023-12-04 15:50:01 25 4
gpt4 key购买 nike

我使用 materialize-css 创建了一个 Angular 形式.这是 HTML

<form [formGroup]="addFeedForm" (ngSubmit)="addFeed(addFeedForm.value)" class="col s12">
<div class="row">
<div class="input-field col m6 s12">
<select formControlName="departmentId" #feedDepartment>
<option value=0>General</option>
<option [value]="department.id" *ngFor="let department of departmentList">{{department.name}}</option>
</select>
<label>Department</label>
</div>

<div>
<button type="button" class="btn waves-effect waves-light col s3 offset-s5" (click)="resetAddFeedForm()">Reset</button>

<button type="submit" [disabled]="!addFeedForm.valid" class="btn waves-effect waves-light col s3 offset-s1">Add</button>

</div>
</div>
</form>

这就是我创建 Angular 形式的方式

this.addFeedForm = new FormGroup({
departmentId: new FormControl(0,Validators.compose([Validators.required])),
});

当我提交时我会提交

addFeed(data: any): void {
console.log(data);

this.addFeedForm.reset({ departmentId: 0 });
}

如果我将部门选择选项更改为其他内容并通过将 departmentId 设置为 0 来提交和重置表单,则应在选择选项中选择“General” .

它不是在 UI 上更新,而是在控制台上,它将 departmentId 设置为 0。

UI 行为就像 enter image description here

在 UI 上选择的选项不同但在控制台上 departmentId 是 0

更新:这是 stackblitz

https://stackblitz.com/edit/angular-tchftw

最佳答案

使用

更新您的表单控件
 addFeed(data: any): void {
console.log(data);
this.addFeedForm.patchValue({departmentId: '0'});
}

或者你也可以使用

this.addFeedForm.controls['departmentId'].setValue('0');

关于html - 重置 Angular react 形式不会更新选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54213558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com