Change an input's ngModel value using a directive Angular 2
问题 I'm stuck on how to access and change an inputs ngModel value using a directive. The outcome of the issue is that the model's address value doesn't update when I select the desired address...it's just set to what I actually typed into the input, rather than final value of the input. I type '830': I select '8300 Fauntleroy Way Southwest, Seattle, WA, United States': Resulting value: { address: '830' } Desired value: { address: '8300 Fauntleroy Way Southwest, Seattle, WA, United States' } In