I\'m building a basic CRUD app with Angular 2. One of the form fields is an array of ingredients. I have an addIngredient method which pushes a new Ingred
What is happening here is that the is using input's name properties to synchronise the models' values. In this case it's basically overriding the [ngModel] synchronisation.
What you can do to fix this is make names dynamic:
(i.e. name="ingredientName_{{i}}")
You can read more about this in the docs: https://angular.io/docs/ts/latest/api/forms/index/NgModel-directive.html
When using the ngModel within tags, you'll also need to supply a name attribute so that the control can be registered with the parent form under that name.
It's worth noting that in the context of a parent form, you often can skip one-way or two-way binding because the parent form will sync the value for you.