输入类型 = 数字验证在角度中无法正常工作
Posted
技术标签:
【中文标题】输入类型 = 数字验证在角度中无法正常工作【英文标题】:Input type=number validation is not working correctly in angular 【发布时间】:2021-03-04 21:59:03 【问题描述】:我希望 input type=number 接受 0.1 到 0.9 之间的十进制数(点后只有一个十进制数,例如:0.11 是不允许的),还有数字 1。 我试图从指令中限制它。该指令似乎有效,但随后我按下提交按钮,表单控件的值不正确。 例如,如果我输入 0.11,输入中会显示 0.1,但表单控件的值为 0.11。 如果我键入一个从 1 到 9 的数字,则输入为空,但表单控件具有该数字的值。 这是一个 stackblitz 链接:https://stackblitz.com/edit/angular-ivy-xa5g8v?file=src%2Fapp%2Fapp.component.ts
【问题讨论】:
【参考方案1】:这是因为您正在更新 DOM 而不是表单模型。一种最简单和常见的方法是从指令发出事件并在事件处理程序中更新表单模型,如下所示,
修改指令
import Component, Output, EventEmitter from "@angular/core";
//other import statements
@Directive(
selector: "[appLimitDecimal]"
)
export class LimitDecimalDirective
@Output()
purgedValue: EventEmitter<any> = new EventEmitter();
@HostListener("input", ["$event"])
changes(evt: any)
const removeLastChar = evt.target.value.substring(
0,
evt.target.value.length - 1
);
// if decimal number length is bigger than 3
if (evt.target.value.length > 3)
console.log("fromDirective", removeLastChar);
// decimal numbers from 0.1 to 0.9 and 1
// remove last character if does not match regex
if (!/^(?:0(?:\.[1-9])?|1)$/.test(evt.target.value))
// evt.target.value = removeLastChar;
this.purgedValue.emit(removeLastChar);
修改后的输入元素
<input
type="number"
formControlName="numberInp"
appLimitDecimal
(purgedValue)="setValue($event)"
min="0.1"
max="1.0"
step="0.1"
/>
最后在app.component.ts中添加如下回调方法
setValue(val)
this.f.patchValue( numberInp: val );
【讨论】:
以上是关于输入类型 = 数字验证在角度中无法正常工作的主要内容,如果未能解决你的问题,请参考以下文章