我有一个输入,我希望像货币一样显示。我想只允许两个小数位,并且只允许数字,同时在必要时自动添加逗号。基本上,如果用户键入“12345”,我希望输入自动显示为“12,345.00”。 “12,345”也可以接受,但如果输入“12345.5”则需要显示为“12,345.50”。我正在尝试使用管道来完成这个并决定使用“数字”管道,因为我不想显示货币符号(在输入之前我已经有一个美元符号作为标签)。
这是我的代码:
<input [ngModel]="Amount | number: '1.2-2'" (ngModelChange)="updateAmount($event)" class="form-control" id="Amount" name="Amount" tabindex="4" type="number" autocomplete="off">
我遇到了一些问题。
管道'DecimalPipe'
的参数'11 .00a'无效
发生此错误后,过滤器将完全停止工作。
如果我将输入设置为type="number"
并输入1234,则值为1,234,但输入将消失,我将在控制台中收到以下消息:
指定值“1,234”不是有效数字。该值必须与以下正则表达式匹配: - ?(\ d + | \ d +。\ d + + |。\ d +)([eE] [ - +]?\ d +)?
使用JQuery Inputmask在限制/显示输入方面给出了我想要的结果,但它打破了我的ngModel并将值设置为空,因此除非有人知道解决方法,否则这对我来说不是一个选项。
我可以对管道进行更改以获得我想要的结果吗?我怎样才能让它发挥作用?
答案 0 :(得分:3)
以上是屏蔽输入的上述启发指令: https://plnkr.co/edit/aBvO2F?p=preview
import { Directive } from "@angular/core";
import { NgControl } from "@angular/forms";
@Directive({
selector: '[ngModel][decimal]',
host: {
'(ngModelChange)': 'onInputChange($event)'
}
})
export class DecimalMask {
constructor(public model: NgControl) {}
onInputChange(event, backspace) {
var valArray = event.toString().split('.') : [];
for(var i = 0; i < valArray.length; ++i) {
valArray[i] = valArray[i].replace(/\D/g, '');
}
var newVal: number;
if(valArray.length === 0) {
newVal = '';
}
else {
let matches = valArray[0].match(/[0-9]{3}/mig);
if(matches !== null && valArray[0].length > 3) {
let commaGroups = Array.from(Array.from(valArray[0]).reverse().join('').match(/[0-9]{3}/mig).join()).reverse().join('');
let replacement = valArray[0].replace(commaGroups.replace(/\D/g, ''), '');
newVal = (replacement.length > 0 ? replacement + "," : "") + commaGroups;
} else {
newVal = valArray[0];
}
if(valArray.length > 1) {
newVal += "." + valArray[1].substring(0,2);
}
}
// set the new value
this.model.valueAccessor.writeValue(newVal);
}
}
输入元素如下:
<input decimal [(ngModel)]="Amount"
class="form-control" id="Amount" name="Amount" tabindex="4" autocomplete="off">
如果最后一个字符是小数或长度超过小数,请检查保护&gt; 2:
ngDoCheck() {
console.log(this.Amount);
if(this.Amount) {
this.Amount = this.Amount.replace(/[A-Za-z]/g, '');
if(this.Amount.indexOf('.') !== -1) {
var arrayVals = this.Amount.split('.');
this.Amount = arrayVals[0] + "." + arrayVals[1].slice(0,2);
}
}
}