如何在FormControl中显示值并保留另一个值?

时间:2017-08-10 20:32:49

标签: angular angular2-forms angular-reactive-forms

我正在使用text-mask lib,它的效果非常好。

考虑 mask 的以下配置:

priceMask = Object.freeze({
  mask: createNumberMask({
    allowDecimal: true,
    decimalSymbol: ',',
    integerLimit: 7,
    prefix: '',
    thousandsSeparatorSymbol: '.'
  })
});

在我的HTML中,我有以下内容:

<form [formGroup]="formGroup">
  <input type="text"
         formControlName="maskedInput"
         [textMask]="priceMask">
</form>

您可能已经注意到,在我的掩码配置中,我将字段限制为具有如下值:

9.999.999,99

但是,虽然我想向用户显示此特定格式,但我希望在control中获得不同的值,例如:

9999999,99

这可能吗?

我希望这个问题足够明确。感谢。

这是我为了说明情况而创建的plnkr

1 个答案:

答案 0 :(得分:5)

我会为此创建一个指令:

@Directive({
  selector: '[numeric]'
})

export class NumericDirective {

  constructor(private model: NgControl) { }

  @HostListener('input') inputChange() {
    const newValue = this.model.value.replace(/\./g, '');
    this.model.control.setValue(newValue);
    this.model.valueAccessor.writeValue(newValue);
  }    
}

在HTML中,只需添加numeric属性:

<form [formGroup]="formGroup">
  <input type="text"
         formControlName="maskedInput"
         [textMask]="priceMask"
         numeric>
</form>

DEMO