将管道应用于输入框
Apply pipe to input box
我已经编写了 thousandsSeparatorPipe
,它与 label
一起工作正常,如下所示。
<ion-label fixed>{{project.contingency | thousandsSeparatorPipe}}</ion-label>
但是如何将 pipe
应用到 ion-input
?因为我需要在用户输入下面的 numeric
box.Any 帮助时显示千位分隔符,好吗?
<ion-input type="number" formControlName="budget" [(ngModel)]="project.budget" ></ion-input>
我已经编写了 thousandsSeparatorPipe
,它与 label
一起工作正常,如下所示。
<ion-label fixed>{{project.contingency | thousandsSeparatorPipe}}</ion-label>
但是如何将 pipe
应用到 ion-input
?因为我需要在用户输入下面的 numeric
box.Any 帮助时显示千位分隔符,好吗?
<ion-input type="number" formControlName="budget" [(ngModel)]="project.budget" ></ion-input>