gpt4 book ai didi

angular - 有什么方法可以根据到达的值检查或不检查复选框吗? Angular

转载 作者:行者123 更新时间:2023-12-02 11:14:08 24 4
gpt4 key购买 nike

当数据直接到达时,表格被填满,我不能告诉你,如果“A”到达,则检查,如果“D”到达,则不检查。

 re(ref: getrefactormodel, contador:number){
let datos= this.fb.group({
word_to_rename: [ref.word_to_rename, Validators.required],
renowned_word: [ref.renowned_word, Validators.required],
name:[ref.name, Validators.required],
id:[ref.id, Validators.required],
activecheck:[ref.activecheck, Validators.required]
});
this.refactorFormGroupItemsArray.insert(contador,datos);
}

就像有某种方法可以输入,如果值为 A,则检查它是否为 D。

<input  type="checkbox"  formControlName="activecheck" value="D" />

最佳答案

复选框是 true/false 值,即使您已将其设置为字符串,当您再次更改它时,该值将是 false 或 true。

 re(ref: getrefactormodel, contador:number){
let datos= this.fb.group({
word_to_rename: [ref.word_to_rename, Validators.required],
renowned_word: [ref.renowned_word, Validators.required],
name:[ref.name, Validators.required],
id:[ref.id, Validators.required],
activecheck:[ref.activecheck == 'D' ? true : false , Validators.required]
});
this.refactorFormGroupItemsArray.insert(contador,datos);
}

demo 🚀

some angular component libraries has a components like checkbox the behave the way you want I been use primeng check their component here

关于angular - 有什么方法可以根据到达的值检查或不检查复选框吗? Angular ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59421527/

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