Angular2在ngModel中使用货币

时间:2017-06-09 15:14:42

标签: html angular

您好我正在尝试使用Angular2在输入框中显示货币。现在我有

<p class="list-group-item-text">${{ item.price | number : '1.2-2'}}</p>
<input type="text" class="form-control" [(ngModel)]="item.price">

和输出是

enter image description here

我正在寻找的是框内的文字与框上方的文字相同。

1 个答案:

答案 0 :(得分:1)

试试此套餐:https://www.npmjs.com/package/ng2-currency-mask

添加此内容后,就像在输入中添加 currencyMask 一样简单。

<input currencyMask [(ngModel)]="value" />