仅在更改ngx-currency后选择值

时间:2019-06-14 17:46:14

标签: angular

我只想在更改输入值后选择值,我需要在输入值后求和。

<input currencyMask [(ngModel)]="baixa.juros" (ngModelChange)="setJuros($event.target.value)" [options]="{ prefix: '', thousands: '.', decimal: ',', allowNegative: false }" name="valor_juros" id="valor_juros_liq" class="input-default" />

它不起作用,因为它会在每次按键时调用该函数

1 个答案:

答案 0 :(得分:2)

只有在完成输入值后,才使用(focusout)来调用函数。

每次更改值时,(change)方法都会触发,并且每次按键也是如此。