gpt4 book ai didi

Angular 形式 - 访问模板中的嵌套控件

转载 作者:太空狗 更新时间:2023-10-29 17:45:26 25 4
gpt4 key购买 nike

我的表单中有一个嵌套的控制组,我想访问它们的表单状态值(如原始和有效)以动态显示验证错误。

是这样动态构建的

controlMap['password'] = this.password;
controlMap['customData'] = this.formBuilder.group(customDataControlMap);
this.form = new FormGroup(controlMap)

来自 obj 就像

{
controls:{
password:{}
--->nested
customData:{
controls:{
customerId:{}
}
}
}
}

模板中的 ngClass 看起来很丑

[ngClass]="( !form.controls.customData.controls.customerId.valid && !form.controls.customData.controls.customerId.touched && submitted) ? 'invalid' : ''"

并且在我尝试构建它时无法正常工作 (ng build --prod)

ERROR in ng:///Users/hanche/Desktop/Development/selfbits/beratergruppe-leistungen-webclient/src/app/pages/clients/client-new/client-new.component.html (6,61): Propert y 'controls' does not exist on type 'AbstractControl'.

最佳答案

试试这个

form.get('customData').get('customerId')?.invalid

form.get('customData.customerId')

is there a way to avoid function calls in template?

使用 setter/getter

class YourComponent {
get dataCustomerId() {
return this.form.get('customData.customerId');
}
}

模板:

[ngClass]="dataCustomerId?.invalid"

angular forms - accessing nested controls in template

关于 Angular 形式 - 访问模板中的嵌套控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43530175/

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