gpt4 book ai didi

javascript - 读取 Angular Reactive Form 中的复选框 FormControl 值

转载 作者:行者123 更新时间:2023-12-01 00:53:13 25 4
gpt4 key购买 nike

我有以下代码

if (this.myForm.value['isDefault'] === true)

其中 isDefault 是复选框 FormControl。现在,如果选中该复选框,我期望 this.myForm.value['isDefault'] 结果为 true。当我发出警报时,它确实显示为 true,但这种比较不会导致 true。

最佳答案

您需要重新检查 TS 文件中的表单和代码。我重现它仍然可以正常工作。

HTML

<div class="container">
<div>
<form [formGroup]="theForm" (submit)="check()">
Check? <input type='checkbox' formControlName="firstCheck"/>
<input type="submit" value="check">
</form>
</div>

</div>

TS

export class AppComponent {

theForm: FormGroup;
constructor(private fb: FormBuilder) {
this.theForm = fb.group({
firstCheck: false
})
}

check() {
console.log(this.theForm.value['firstCheck'] === true)
}
}

演示 https://stackblitz.com/edit/checkbox-reactive-aagwtp?file=app%2Fapp.component.ts

关于javascript - 读取 Angular Reactive Form 中的复选框 FormControl 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56794530/

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