Here is the .html
code
[ngModel]="offers" formControlName="offers"
It Output: [object Object]
How could I got the offers array value??
Here is the .html
code
[ngModel]="offers" formControlName="offers"
It Output: [object Object]
How could I got the offers array value??
Try:
{{ offers | json }}
Use pipe
as json
on html page.