I would like to know how to get the value from an input on angular 4. I looked over the documentation on angular and the example with the key event doesn\'t work very well for m
If you want to read only one field value, I think, using the template reference variables is the easiest way
Template
**Component** callPhone(phone): void { console.log(phone); }
If you have a number of fields, using the reactive form one of the best ways.