How does an angular service that is about to post an api 'collect' the values from FormControl?

I think what you are looking for is this.myForm.value. A couple of other observations: please define interfaces for all your business logic types, and don’t abuse any for that, and don’t make myForm private. Anything that is accessed by the template needs to be public.

2 Likes