gpt4 book ai didi

angular - 如何在 Angular 6 项目中使用 ng2-currency-mask

转载 作者:行者123 更新时间:2023-12-02 03:26:42 30 4
gpt4 key购买 nike

我在 Angular 6 项目中使用 ng2-currency-mask 模块,但是当在输入字段中应用(更改)方法时,它不起作用

这里我使用了输入标签

                        <input style="text-align:right; width:260px;" currencyMask  [options]="{ prefix: 'Rs ', thousands: ',', decimal: '.' }" (change)="addToAllChange($event.target.value)" placeholder="Value" class="form-control"/>

最佳答案

即使由于 currencyMask 指令,您也无法触发 change。您可以利用 ngModelngModelChange

<input style="text-align:right; width:260px;" currencyMask  
[options]="{ prefix: 'Rs ', thousands: ',', decimal: '.' }"
#currency
(ngModelChange)="addToAllChange(currency.value)"
[(ngModel)]="value"
placeholder="Value"
class="form-control"/>

如果您想控制何时更新,可以使用ngModelOption

关于angular - 如何在 Angular 6 项目中使用 ng2-currency-mask,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53183130/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com