gpt4 book ai didi

javascript - Angular2 react 形式: Validate fields inside *ngIf

转载 作者:行者123 更新时间:2023-12-03 03:50:26 24 4
gpt4 key购买 nike

我有一个带有 md-selectmd-radio-button 字段的表单。单选按钮下的选项将根据 md-select 中选择的选项显示。请访问plunker

您可以看到我已经创建了带有必填子组织单选按钮字段的表单。它在第一次加载时起作用。但是,如果我们选择任何子单选按钮选项,然后更改有机体选择框,则表单仍然有效,但没有有效的子有机体值。如果未选中子单选按钮,我需要使表单无效。请帮忙。

问题 2:同样在 plunk 中,请取消注释 app.component.ts 中第 47 行之后的以下行,以便字段有默认值。将显示子有机体单选按钮,但选择框将为空白。有选定的值,这就是显示子有机体字段的原因。不确定为什么没有为生物 md-select 选择该选项。

最佳答案

md-select 添加一个 change 事件,以便在选择更改且表单已验证时,您可以重置 selected.sub_organism_id 的值null。这将使表格无效。

代码片段:

html:

<md-select [formControl]="form.controls['organism']" 
style="width:100%;"
[(ngModel)]="selected.organism_id"
(change)="resetForm($event)">
<md-option *ngFor="let organism_id of getIds()" [value]="organism_id">
{{ organisms[organism_id].name }}
</md-option>
</md-select>

ts:

resetForm(org){
if(this.form.valid){
this.selected.sub_organism_id = null;
};
}

Edited Plunk

更新:

就像 @WillHowell 在他的评论中所说,“md-select 通过对象引用而不是对象值来比较值”,这是正确的。我将您的数据修改为数组对象关系,并且 md-select 默认值有效 here

关于javascript - Angular2 react 形式: Validate fields inside *ngIf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45188203/

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