【发布时间】:2017-09-12 16:58:34
【问题描述】:
我正在尝试将表单控件状态设置为有效
this.currencyForm.controls['currencyMaxSell'].setErrors({smallerThan: true})
现在我想删除这个错误。
【问题讨论】:
-
您可以运行验证 -
this.currencyForm.controls['currencyMaxSell'].updateValueAndValidity() -
试试 setError(null)
-
stackoverflow.com/a/68526302/5456789 使用 markAsUntouched