所以我想在ngClass中检索html输入的值,以便稍后在管道中进行比较。 例子:
<input type="email" ... [ngClass]="myPipe(input.value)" >
或者也许是这样:
<input type="email" ... [ngClass]="item.value | myPipe" >
您知道实现这一目标的任何方法吗?
谢谢。
答案 0 :(得分:1)
摘自我上面的评论:
<input type="email" #myInput [ngClass]="myPipe( myInput.value )" >
答案 1 :(得分:0)
尝试一下:
<input type="email" [ngModel]="input.value" [ngClass]="myPipe(input.value)" >