所以我正在尝试制作一个可以操作FormControl的指令.
似乎如果我使用长语法来在模板中声明表单控件,我可以将控件传递给指令,以便将其作为直接@Input()绑定;即:使用以下模板:
<form [formGroup]="myForm"> <input type="text" id="myText" [formControl]="myForm.controls['myText']" my-directive> </form>
以下组件逻辑:
@Component({ // Properties go here. }) class MyComponent { myForm: FormGroup; constructor(fb: FormBuilder) { // Constructor logic... } ngOnInit() { this.myForm = this.fb.group({ "myText": [""] }); } }
该指令看起来像:
@Directive({ selector: "[my-directive]" }) class MyDirective { Input() formControl: FormControl; }
但是,如果我在模板中使用formControlName语法:
<form [formGroup]="myForm"> <input type="text" id="myText" formControlName="myText" my-directive> </form>
我如何在指令中引用(隐式?)make FormControl?
如果你使用NgControl,ElementRef,HostListener和构造函数注入,我们可以有一个适用于formControlName或[formControl] guise甚至模板驱动形式的反应形式的表单控件的指令:
原文链接:https://www.f2er.com/angularjs/143736.htmlimport { Directive,HostListener } from "@angular/core"; import { NgControl } from "@angular/forms"; @Directive({ selector: '[my-directive]' }) export class MyDirective { constructor(private el: ElementRef,private control : NgControl) { } @HostListener('input',['$event']) onEvent($event){ let valueToTransform = this.el.nativeElement.value; // do something with the valueToTransform this.control.control.setValue(valueToTransform); } }
这是一个applicable demo