Angular 6.10.0 - @Directive 和 Reactive 表单
Angular 6.10.0 - @Directive and Reactive Forms
这是我的@Directive
/* Imports */
@Directive({
selector: '[ngModel][myLabel]'
})
export class MyDirective {
lastValue: string;
constructor(private myService: MyService) {}
@HostListener('input', ['$event']) onInput($event)
{
var start = $event.target.selectionStart;
var end = $event.target.selectionEnd;
$event.target.value = this.myService.format($event.target.value);
$event.target.setSelectionRange(start, end); // Preserve the cursor position
$event.preventDefault(); // A new event will be fired below
// Avoid infinite loop
if (!this.lastValue || (this.lastValue && $event.target.value.length > 0 && this.lastValue !== $event.target.value)) {
this.lastValue = $event.target.value;
// Must create a new "input" event since we have changed the value of the input, if not, there are no change detected in the value
const evt = document.createEvent('HTMLEvents');
evt.initEvent('input', false, true);
$event.target.dispatchEvent(evt);
}
}
}
在 'normal' angular 表单上 <input>
受我的指令限制
<!-- Expected behaviour works perfectly -->
<form (ngSubmit)="submit()" #form=ngForm>
<input myLabel type="text" ... >
</form>
但是当涉及到 ReactForms 时,我的指令并未应用于 <input>
<!-- @Directive not applied -->
<div *ngSwitchDefault [formGroup]="myFormGroup">
<input myLabel type="text" ... />
</div>
我在网上找不到关于如何在 ReactForm 上应用指令的答案?。
我知道我应该使用 Validator
但我的 @Directive
已经存在并且创建两个格式化规则将重复看起来不干净的逻辑(如何格式化输入)......
编辑:我的指令已在 app.module.ts
中明确声明
EDIT2:提供指令内容
恕我直言,最快的解决方案是为可视化创建一个验证器并观察 FormControl 的 valueChanges:
form.get('inputName').valueChanges.subscribe(value=>{
// Code from your onInput @HostListener
});
验证器将进行表单初始化:
this.form.group({ inputName: ['initialValue', yourValidator]});
这是我的@Directive
/* Imports */
@Directive({
selector: '[ngModel][myLabel]'
})
export class MyDirective {
lastValue: string;
constructor(private myService: MyService) {}
@HostListener('input', ['$event']) onInput($event)
{
var start = $event.target.selectionStart;
var end = $event.target.selectionEnd;
$event.target.value = this.myService.format($event.target.value);
$event.target.setSelectionRange(start, end); // Preserve the cursor position
$event.preventDefault(); // A new event will be fired below
// Avoid infinite loop
if (!this.lastValue || (this.lastValue && $event.target.value.length > 0 && this.lastValue !== $event.target.value)) {
this.lastValue = $event.target.value;
// Must create a new "input" event since we have changed the value of the input, if not, there are no change detected in the value
const evt = document.createEvent('HTMLEvents');
evt.initEvent('input', false, true);
$event.target.dispatchEvent(evt);
}
}
}
在 'normal' angular 表单上 <input>
受我的指令限制
<!-- Expected behaviour works perfectly -->
<form (ngSubmit)="submit()" #form=ngForm>
<input myLabel type="text" ... >
</form>
但是当涉及到 ReactForms 时,我的指令并未应用于 <input>
<!-- @Directive not applied -->
<div *ngSwitchDefault [formGroup]="myFormGroup">
<input myLabel type="text" ... />
</div>
我在网上找不到关于如何在 ReactForm 上应用指令的答案?。
我知道我应该使用 Validator
但我的 @Directive
已经存在并且创建两个格式化规则将重复看起来不干净的逻辑(如何格式化输入)......
编辑:我的指令已在 app.module.ts
中明确声明
EDIT2:提供指令内容
恕我直言,最快的解决方案是为可视化创建一个验证器并观察 FormControl 的 valueChanges:
form.get('inputName').valueChanges.subscribe(value=>{
// Code from your onInput @HostListener
});
验证器将进行表单初始化:
this.form.group({ inputName: ['initialValue', yourValidator]});