Tag: angular2 ngmodel

在Angular2-View中,在INPUT元素的ngModel中使用pipe道

我有一个HTMLinput字段。 <input [(ngModel)]="item.value" name="inputField" type="text" /> 我想格式化它的值并使用现有的pipe道: …. [(ngModel)]="item.value | useMyPipeToFormatThatValue" ….. 并得到错误信息: 在动作expression式中不能有pipe道 我如何在这种情况下使用pipe道?