如何为分数创建指令,以便用户可以输入唯一的分数,如下所示。
"10 1/2" // Valid format
"10.25" // Valid format
"10 1/2" // Invalid format extra spaces found
"dummy 12 1/2" // Invalid string format found
答案 0 :(得分:1)
以下应该起作用。
首先创建指令:
@Directive({
selector: '[exampleDirective]'
})
export class TestDirective {
constructor() {}
@HostListener('input', ['$event'])
ngOnChanges(evt: any) {
const pattern: RegExp = new RegExp(/^[0-9]+\.?[0-9]*$/);
if (!pattern.test(evt.target.value)) {
evt.srcElement.value = evt.srcElement.value.substring(0,evt.srcElement.value.length - 1); // this will erase the last char that does not match the pattern...
}
}
}
,然后在输入中选择它
<input exampleDirective/>
答案 1 :(得分:0)
您可以执行以下操作。
1)在您的html文件中
<input type="text" (change)="onChange($event.target.value)"/>
2)在您的打字稿文件中
onChange(value) {
const reg = /[1-9][0-9]*(?:\/[1-9][0-9])*/; // -> Regex for matching only numbers and fractions
if (!reg.test(value)) { // test() matches string with regex
// reset textbox here.
}
}