Mudanças entre as edições de "Model Driven Forms (Reactive forms) in Angular2"
De Basef
(→3) In your template:) |
|||
(2 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
Linha 48: | Linha 48: | ||
<source lang="xml"> | <source lang="xml"> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<form [formGroup]="myForm"> | <form [formGroup]="myForm"> | ||
<input type="text" formControlName="field1" /> | <input type="text" formControlName="field1" /> | ||
Linha 63: | Linha 55: | ||
</source> | </source> | ||
− | [[Category: | + | [[Category: Angular]] |
Edição atual tal como às 09h39min de 27 de janeiro de 2020
A complete guide to reactive forms: Thoughtram - Model Driven Forms in Angular 2
1) In your Module:
import { ReactiveFormsModule } from '@angular/forms';
Add `ReactiveFormsModule` to `imports` section.
2) In your Component:
import { FormGroup, FormControl } from '@angular/forms'; export class MyComponent { myForm: FormGroup; constructor() { this.myForm = new FormGroup({ field1: new FormControl(), field2: new FormControl() }); } }
or
import { FormGroup, FormBuilder, Validators } from '@angular/forms'; export class MyComponent { myForm: FormGroup; constructor(private fb: FormBuilder) { this.myForm = fb.group({ 'field1': ['', Validators.required], 'field2': [''] }); } }
3) In your template:
These are similar to ngModel of Angular1:
<form [formGroup]="myForm"> <input type="text" formControlName="field1" /> <input type="text" formControlName="field2" /> </form>