更改组件的输入值

时间:2016-08-07 15:37:15

标签: angular

Assumign我有以下模板表达式:

application.html.erb

我想从我的组件.ts文件中访问<md-input type="number" #power [placeholder]="powerLabel" required> </md-input> ,我该怎么做?

使用([ngModel])给了我一些我无法处理的控制台错误。

1 个答案:

答案 0 :(得分:1)

不确定它是否可行,但您是否尝试使用ViewChild创建成员变量,如下所示:@ViewChild('power') power; 然后,您可以使用this.power.nativeElement.value处理该值 请记住导入ViewChild:import {ViewChild} from '@angular/core';