如何在 Angular2 中访问组件中元素的 value 属性?
在模板中:
<input #myInput (keyup.enter)="onInput(myInput)"/>
在组件代码中:
import {ElementRef} from '@angular/core';
...
onInput(latLngInputElement: ElementRef) {
// I want to access the value property of the <input> element here, and
// modify it so that it is reflected back in the template.
我知道我可以将 myInput.value 传递到代码中,但我需要引用以便我也可以使用该函数来更新元素的 .value 属性。
我想知道是否有一种方法可以做到这一点,它不涉及两种方式绑定到全局变量,因为我认为拥有尽可能少的全局变量会更干净。谢谢!