@angular/core'; import { HttpClient } from '@angular/common/http'; @Component({ selector: 'my-app', template: ` <form [formGroup]="form"> <button class="btn btn-primary" (click)="onFetchPerson()">Click Me</button> <div class="form-group"> <label>First Name</label> <input ...
I think this is related to core form functionality and firstly should be changed there.angular/angular#11447. Also to get all values you could use this.testForm.valueChanges.subscribe((data:any)=>{this.form_data=this.testForm.getRawValue();}); ...