【发布时间】:2019-08-03 04:14:27
【问题描述】:
如果我有一个带有表单输入的组件,并且我想将 OnInit 块中的两个语句检测为指令中的事件,那么正确的方法是什么?我对“输入”和“ngModelChange”很幸运,但是我尝试听的任何事件都没有捕捉到模型驱动表单的 patchValue() 方法或模板驱动表单的直接分配(即使它反映在 DOM 中) .
这是我的组件:
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms'
@Component({
selector: 'my-app',
template:
`
<h5>Model form input</h5>
<form [formGroup]="inputForm">
<input patchable-input formControlName="input" />
</form>
<h5>Template form input</h5>
<input patchable-input [(ngModel)]="input" />
`
})
export class AppComponent implements OnInit {
inputForm = new FormGroup({
input: new FormControl('')
})
input = '';
ngOnInit() {
this.inputForm.patchValue({
input: 'testing patch'
})
this.input = 'testing override'
}
}
这是我的指令:
import { Directive, HostListener } from '@angular/core';
@Directive({
selector: '[patchable-input]'
})
export class PatchableInputDirective {
@HostListener('ngModelChange', ['$event']) ngOnChanges($event) {
console.log($event);
}
}
还有一个minimal reproduction in StackBlitz(观看控制台)
【问题讨论】:
标签: javascript angular angular-reactive-forms angular-directive angular-forms