AbstractControl
class
This is the base class for FormControl
, FormGroup
, and FormArray
.
abstract class AbstractControl { constructor(validator: ValidatorFn | null, asyncValidator: AsyncValidatorFn | null) value: any validator: ValidatorFn | null asyncValidator: AsyncValidatorFn | null parent: FormGroup | FormArray status: string valid: boolean invalid: boolean pending: boolean disabled: boolean enabled: boolean errors: ValidationErrors | null pristine: boolean dirty: boolean touched: boolean untouched: boolean valueChanges: Observable<any> statusChanges: Observable<any> updateOn: FormHooks root: AbstractControl setValidators(newValidator: ValidatorFn | ValidatorFn[] | null): void setAsyncValidators(newValidator: AsyncValidatorFn | AsyncValidatorFn[] | null): void clearValidators(): void clearAsyncValidators(): void markAsTouched(opts: {...}): void markAsUntouched(opts: {...}): void markAsDirty(opts: {...}): void markAsPristine(opts: {...}): void markAsPending(opts: {...}): void disable(opts: {...}): void enable(opts: {...}): void setParent(parent: FormGroup | FormArray): void abstract setValue(value: any, options?: Object): void abstract patchValue(value: any, options?: Object): void abstract reset(value?: any, options?: Object): void updateValueAndValidity(opts: {...}): void setErrors(errors: ValidationErrors | null, opts: {...}): void get(path: Array<string | number> | string): AbstractControl | null getError(errorCode: string, path?: string[]): any hasError(errorCode: string, path?: string[]): boolean }
Subclasses
See also
Description
It provides some of the shared behavior that all controls and groups of controls have, like running validators, calculating status, and resetting state. It also defines the properties that are shared between all sub-classes, like value
, valid
, and dirty
. It shouldn't be instantiated directly.
Constructor
Initialize the AbstractControl instance. | ||||
|
validator | The function that determines the synchronous validity of this control. |
asyncValidator | The function that determines the asynchronous validity of this control. |
Properties
Property | Description |
---|---|
value: any |
Read-only. The current value of the control.
|
validator: ValidatorFn | null | The function that determines the synchronous validity of this control. Declared in constructor. |
asyncValidator: AsyncValidatorFn | null | The function that determines the asynchronous validity of this control. Declared in constructor. |
parent: FormGroup | FormArray |
Read-only. The parent control. |
status: string |
Read-only. The validation status of the control. There are four possible validation status values:
These status values are mutually exclusive, so a control cannot be both valid AND invalid or invalid AND disabled. |
valid: boolean |
Read-only. A control is |
invalid: boolean |
Read-only. A control is |
pending: boolean |
Read-only. A control is |
disabled: boolean |
Read-only. A control is |
enabled: boolean |
Read-only. A control is |
errors: ValidationErrors | null |
Read-only. An object containing any errors generated by failing validation, or null if there are no errors. |
pristine: boolean |
Read-only. A control is |
dirty: boolean |
Read-only. A control is |
touched: boolean |
Read-only. True if the control is marked as A control is marked |
untouched: boolean |
Read-only. True if the control has not been marked as touched A control is |
valueChanges: Observable<any> |
Read-only. A multicasting observable that emits an event every time the value of the control changes, in the UI or programmatically. |
statusChanges: Observable<any> |
Read-only. A multicasting observable that emits an event every time the validation |
updateOn: FormHooks |
Read-only. Reports the update strategy of the |
root: AbstractControl |
Read-only. Retrieves the top-level ancestor of this control. |
Methods
setValidators() | ||
---|---|---|
Sets the synchronous validators that are active on this control. Calling this overwrites any existing sync validators. | ||
|
newValidator | Type: |
Returns
void
setAsyncValidators() | ||
---|---|---|
Sets the async validators that are active on this control. Calling this overwrites any existing async validators. | ||
|
newValidator | Type: |
Returns
void
clearValidators() |
---|
Empties out the sync validator list. |
|
clearAsyncValidators() |
---|
Empties out the async validator list. |
|
markAsTouched() | ||
---|---|---|
Marks the control as | ||
|
opts | Configuration options that determine how the control propagates changes and emits events events after marking is applied.
Optional. Default is |
Returns
void
markAsUntouched() | ||
---|---|---|
Marks the control as | ||
|
opts | Configuration options that determine how the control propagates changes and emits events after the marking is applied.
Optional. Default is |
Returns
void
If the control has any children, also marks all children as untouched
and recalculates the touched
status of all parent controls.
markAsDirty() | ||
---|---|---|
Marks the control as | ||
|
opts | Configuration options that determine how the control propagates changes and emits events after marking is applied.
Optional. Default is |
Returns
void
markAsPristine() | ||
---|---|---|
Marks the control as | ||
|
opts | Configuration options that determine how the control emits events after marking is applied.
Optional. Default is |
Returns
void
If the control has any children, marks all children as pristine
, and recalculates the pristine
status of all parent controls.
markAsPending() | ||
---|---|---|
Marks the control as | ||
|
opts | Configuration options that determine how the control propagates changes and emits events after marking is applied.
Optional. Default is |
Returns
void
A control is pending while the control performs async validation.
disable() | ||
---|---|---|
Disables the control. This means the control is exempt from validation checks and excluded from the aggregate value of any parent. Its status is | ||
|
opts | Configuration options that determine how the control propagates changes and emits events after the control is disabled.
Optional. Default is |
Returns
void
If the control has children, all children are also disabled.
enable() | ||
---|---|---|
Enables the control. This means the control is included in validation checks and the aggregate value of its parent. Its status recalculates based on its value and its validators. | ||
|
opts | Configure options that control how the control propagates changes and emits events when marked as untouched
Optional. Default is |
Returns
void
By default, if the control has children, all children are enabled.
setParent() | ||
---|---|---|
|
parent | Sets the parent of the control |
Returns
void
setValue() | ||||
---|---|---|---|---|
Sets the value of the control. Abstract method (implemented in sub-classes). | ||||
|
value | Type: |
options | Type: Optional. Default is |
Returns
void
patchValue() | ||||
---|---|---|---|---|
Patches the value of the control. Abstract method (implemented in sub-classes). | ||||
|
value | Type: |
options | Type: Optional. Default is |
Returns
void
reset() | ||||
---|---|---|---|---|
Resets the control. Abstract method (implemented in sub-classes). | ||||
|
value | Type: Optional. Default is |
options | Type: Optional. Default is |
Returns
void
updateValueAndValidity() | ||
---|---|---|
Recalculates the value and validation status of the control. | ||
|
opts | Configuration options determine how the control propagates changes and emits events after updates and validity checks are applied.
Optional. Default is |
Returns
void
By default, it also updates the value and validity of its ancestors.
setErrors() | ||||
---|---|---|---|---|
Sets errors on a form control when running validations manually, rather than automatically. | ||||
|
errors | Type: |
opts | Type: Optional. Default is |
Returns
void
Calling setErrors
also updates the validity of the parent control.
Manually set the errors for a control
const login = new FormControl('someLogin'); login.setErrors({ notUnique: true }); expect(login.valid).toEqual(false); expect(login.errors).toEqual({ notUnique: true }); login.setValue('someOtherLogin'); expect(login.valid).toEqual(true);
get() | ||
---|---|---|
Retrieves a child control given the control's name or path. | ||
|
path | A dot-delimited string or array of string/number values that define the path to the control. |
Returns
AbstractControl | null
Retrieve a nested control
For example, to get a name
control nested within a person
sub-group:
this.form.get('person.name');
-OR-
this.form.get(['person', 'name']);
getError() | ||||
---|---|---|---|---|
Reports error data for a specific error occurring in this control or in another control. | ||||
|
errorCode | The error code for which to retrieve data |
path | The path to a control to check. If not supplied, checks for the error in this control. Optional. Default is |
Returns
any
: The error data if the control with the given path has the given error, otherwise null or undefined.
hasError() | ||||
---|---|---|---|---|
Reports whether the control with the given path has the error specified. | ||||
|
errorCode | The error code for which to retrieve data |
path | The path to a control to check. If not supplied, checks for the error in this control. Optional. Default is |
Returns
boolean
: True when the control with the given path has the error, otherwise false.
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v6.angular.io/api/forms/AbstractControl