我正在使用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。
答案 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>