AbstractControlOptions

Interface for options provided to an AbstractControl.

提供给 AbstractControl 的配置项接口。

interface AbstractControlOptions { validators?: ValidatorFn | ValidatorFn[] | null asyncValidators?: AsyncValidatorFn | AsyncValidatorFn[] | null updateOn?: 'change' | 'blur' | 'submit' }

属性

属性名类型说明
validators

List of validators applied to control.

应用于该控件的验证器列表。

asyncValidators

List of async validators applied to control.

应用于该控件的异步验证器列表。

updateOn

The event name for control to update upon.

会导致更新控件的事件名称。