我有一个HTML INPUT字段。
<input [(ngModel)]="item.value" name="inputField" type="text" />
我想格式化其值并使用现有的管道:
.... [(ngModel)]="item.value | useMyPipeToFormatThatValue" .....
并得到错误信息:
Cannot have a pipe in an action expression
在这个上下文中如何使用管道?
您不能在模板语句中使用
Template expression operators(管道,保存导航器)
原文链接:https://www.f2er.com/angularjs/144209.html(ngModelChange)="Template statements"
(ngModelChange)=“item.value | useMyPipeToFormatThatValue = $ event”
https://angular.io/docs/ts/latest/guide/template-syntax.html#!#template-expressions
所以你应该写下如下:
<input [ngModel]="item.value | useMyPipeToFormatThatValue" (ngModelChange)="item.value=$event" name="inputField" type="text" />