【发布时间】:2019-05-22 21:45:07
【问题描述】:
我在父组件和子组件内的部分中有角度反应形式。
在子组件中,我有一个复选框 - 当它被选中时 - 打开更多字段,我希望它们都是必需的。
我正在使用 setValidators,但出现错误
ParentFormComponent.html:3 ERROR 错误: ExpressionChangedAfterItHasBeenCheckedError:表达式已更改 检查后。以前的值:'ng-valid: true'。当前值: 'ng-有效:假'。 在 viewDebugError (core.js:7601) 在表达式ChangedAfterItHasBeenCheckedError (core.js:7589) 在 checkBindingNoChanges (core.js:7691) 在 checkNoChangesNodeInline (core.js:10560) 在 checkNoChangesNode (core.js:10541) 在 debugCheckNoChangesNode (core.js:11144) 在 debugCheckRenderNodeFn (core.js:11098) 在 Object.eval [作为 updateRenderer] (ParentFormComponent.html:3) 在 Object.debugUpdateRenderer [作为 updateRenderer] (core.js:11087) 在 checkNoChangesView (core.js:10442)
ParentFormComponent.html:3 错误上下文 DebugContext_ {view: Object, nodeIndex: 2, nodeDef: Object, elDef: Object, elView: Object}
这是 ParentFormComponent.html:3 的那一行
<form [formGroup]="parentForm" (ngSubmit)="submitForm()">
这是我的代码:
<label class="container">DB
<input #db type="checkbox" name="db" (change)="checkValue(db.name, db.checked)">
<span class="checkmark"></span>
</label>
<div *ngIf="db.checked" formGroupName="_monitorDB">
<mat-form-field>
<input matInput placeholder="Server name" formControlName="ServerName">
</mat-form-field>
<mat-form-field>
<input matInput placeholder="DataBase name" formControlName="DbName">
</mat-form-field>
<mat-form-field>
<input matInput placeholder="table name" formControlName="DB_tableName">
</mat-form-field>
<mat-form-field>
<input matInput placeholder="port" formControlName="DbPort">
</mat-form-field>
<mat-form-field>
<input matInput placeholder="Query" formControlName="Query">
</mat-form-field>
<mat-form-field>
<input matInput placeholder="Permissions" formControlName="Premissions">
</mat-form-field>
</div>
在ts文件中:
checkValue(name:string, event: any){
if (event == true){
this.test.push(name);
if (name =="db"){
this.childForm.get('_monitorDB').get('ServerName').setValidators([Validators.required]);
this.childForm.get('_monitorDB').get('DbName').setValidators([Validators.required]);
this.childForm.get('_monitorDB').get('DB_tableName').setValidators([Validators.required]);
this.childForm.get('_monitorDB').get('DbPort').setValidators([Validators.required]);
this.childForm.get('_monitorDB').get('Query').setValidators([Validators.required]);
this.childForm.get('_monitorDB').get('Premissions').setValidators([Validators.required]);
}
}
else{
const index: number = this.test.indexOf(name);
if (index !== -1) {
this.test.splice(index, 1);
if (name =="db"){
this.childForm.get('_monitorDB').get('ServerName').clearValidators();
this.childForm.get('_monitorDB').get('ServerName').updateValueAndValidity();
this.childForm.get('_monitorDB').get('DbName').clearValidators();
this.childForm.get('_monitorDB').get('DbName').updateValueAndValidity();
this.childForm.get('_monitorDB').get('DB_tableName').clearValidators();
this.childForm.get('_monitorDB').get('DB_tableName').updateValueAndValidity();
this.childForm.get('_monitorDB').get('DbPort').clearValidators();
this.childForm.get('_monitorDB').get('DbPort').updateValueAndValidity();
this.childForm.get('_monitorDB').get('Query').clearValidators();
this.childForm.get('_monitorDB').get('Query').updateValueAndValidity();
this.childForm.get('_monitorDB').get('Premissions').clearValidators();
this.childForm.get('_monitorDB').get('Premissions').updateValueAndValidity();
}
}
}
this.checkboxArr.emit(this.test);
}
【问题讨论】:
-
你能在 stackblitz 上提供最少的可重现代码吗?
标签: angular validation angular6 angular-reactive-forms