我使用的是反应式表单,当我将formControlName禁用()时,整个表单都将失效。我想在禁用后生效。
console.log('Before:'+ (this.form.valid));
this.form.controls['formControlName1'].disable();//calling in onInit()
console.log('After:'+(this.form.valid));
output-:
Before:true
After:false.
答案 0 :(得分:1)
formControlName.disable({onlySelf: true});
使用它。如果有帮助,请投票。欢呼声:D