NgModel
directive
Creates a FormControl
instance from a domain model and binds it to a form control element.
See also
NgModule
Selectors
[ngModel]:not([formControlName]):not([formControl])
Properties
Property | Description |
---|---|
control: FormControl | Read-only. |
viewModel: any | Internal reference to the view model value. |
@Input()name: string | Tracks the name bound to the directive. The parent form uses this name as a key to retrieve this control's value. |
@Input('disabled')isDisabled: boolean | Tracks whether the control is disabled. |
@Input('ngModel')model: any | Tracks the value bound to this directive. |
@Input('ngModelOptions')options: {
name?: string;
standalone?: boolean;
updateOn?: FormHooks;
} | Tracks the configuration options for this name: An alternative to setting the name attribute on the form control element. See the example for using standalone: When set to true, the updateOn: Defines the event upon which the form control value and validity update. Defaults to 'change'. Possible values: |
@Output('ngModelChange')update: EventEmitter | Event emitter for producing the |
path: string[] |
Read-only. Returns an array that represents the path from the top-level form to this control. Each index is the string name of the control on that level. |
formDirective: any |
Read-only. The top-level directive for this control if present, otherwise null. |
validator: ValidatorFn | null |
Read-only. Synchronous validator function composed of all the synchronous validators registered with this directive. |
asyncValidator: AsyncValidatorFn | null |
Read-only. Async validator function composed of all the async validators registered with this directive. |
Inherited from NgControl
-
name: string | null
-
valueAccessor: ControlValueAccessor | null
-
validator: ValidatorFn | null
-
asyncValidator: AsyncValidatorFn | null
Inherited from AbstractControlDirective
-
abstract control: AbstractControl | null
-
value: any
-
valid: boolean | null
-
invalid: boolean | null
-
pending: boolean | null
-
disabled: boolean | null
-
enabled: boolean | null
-
errors: ValidationErrors | null
-
pristine: boolean | null
-
dirty: boolean | null
-
touched: boolean | null
-
status: string | null
-
untouched: boolean | null
-
statusChanges: Observable<any> | null
-
valueChanges: Observable<any> | null
-
path: string[] | null
Template variable references
Identifier | Usage |
---|---|
ngModel | #myTemplateVar="ngModel" |
Description
The FormControl
instance tracks the value, user interaction, and validation status of the control and keeps the view synced with the model. If used within a parent form, the directive also registers itself with the form as a child control.
This directive is used by itself or as part of a larger form. Use the ngModel
selector to activate it.
It accepts a domain model as an optional Input
. If you have a one-way binding to ngModel
with []
syntax, changing the value of the domain model in the component class sets the value in the view. If you have a two-way binding with [()]
syntax (also known as 'banana-box syntax'), the value in the UI always syncs back to the domain model in your class.
To inspect the properties of the associated FormControl
(like validity state), export the directive into a local template variable using ngModel
as the key (ex: #myVar="ngModel"
). You then access the control using the directive's control
property, but most properties used (like valid
and dirty
) fall through to the control anyway for direct access. See a full list of properties directly available in AbstractControlDirective
.
Using ngModel on a standalone control
The following examples show a simple standalone control using ngModel
:
import {Component} from '@angular/core'; @Component({ selector: 'example-app', template: ` <input [(ngModel)]="name" #ctrl="ngModel" required> <p>Value: {{ name }}</p> <p>Valid: {{ ctrl.valid }}</p> <button (click)="setValue()">Set value</button> `, }) export class SimpleNgModelComp { name: string = ''; setValue() { this.name = 'Nancy'; } }
When using the ngModel
within <form>
tags, you'll also need to supply a name
attribute so that the control can be registered with the parent form under that name.
In the context of a parent form, it's often unnecessary to include one-way or two-way binding, as the parent form syncs the value for you. You access its properties by exporting it into a local template variable using ngForm
such as (#f="ngForm"
). Use the variable where needed on form submission.
If you do need to populate initial values into your form, using a one-way binding for ngModel
tends to be sufficient as long as you use the exported form's value rather than the domain model's value on submit.
Using ngModel within a form
The following example shows controls using ngModel
within a form:
import {Component} from '@angular/core'; import {NgForm} from '@angular/forms'; @Component({ selector: 'example-app', template: ` <form #f="ngForm" (ngSubmit)="onSubmit(f)" novalidate> <input name="first" ngModel required #first="ngModel"> <input name="last" ngModel> <button>Submit</button> </form> <p>First name value: {{ first.value }}</p> <p>First name valid: {{ first.valid }}</p> <p>Form value: {{ f.value | json }}</p> <p>Form valid: {{ f.valid }}</p> `, }) export class SimpleFormComp { onSubmit(f: NgForm) { console.log(f.value); // { first: '', last: '' } console.log(f.valid); // false } }
Using a standalone ngModel within a group
The following example shows you how to use a standalone ngModel control within a form. This controls the display of the form, but doesn't contain form data.
<form> <input name="login" ngModel placeholder="Login"> <input type="checkbox" ngModel [ngModelOptions]="{standalone: true}"> Show more options? </form> <!-- form value: {login: ''} -->
Setting the ngModel name attribute through options
The following example shows you an alternate way to set the name attribute. The name attribute is used within a custom form component, and the name @Input
property serves a different purpose.
<form> <my-person-control name="Nancy" ngModel [ngModelOptions]="{name: 'user'}"> </my-person-control> </form> <!-- form value: {user: ''} -->
Methods
ngOnChanges() | |||
---|---|---|---|
A lifecycle method called when the directive's inputs change. For internal use only. | |||
|
changes | SimpleChanges | A object of key/value pairs for the set of changed inputs. |
ngOnDestroy() |
---|
Lifecycle method called before the directive's instance is destroyed. For internal use only. |
|
viewToModelUpdate() | |||
---|---|---|---|
Sets the new value for the view model and emits an | |||
|
newValue | any | The new value emitted by |
Returns
void
Inherited from NgControl
Inherited from AbstractControlDirective
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v7.angular.io/api/forms/NgModel