我正在尝试通过Angular Material datepicker使用ControlValueAccessor。由于某种原因,它不适用于formControlName和反应形式。有人可以解决吗?正在为某些样式和属性构建包装器。值将发送到反应形式,等等
https://material.angular.io/components/datepicker/overview
打字稿:
import { Component, OnInit, Input, Output, EventEmitter, forwardRef } from '@angular/core';
import { NG_VALUE_ACCESSOR } from '@angular/forms';
@Component({
selector: 'app-date-picker',
templateUrl: './date-picker.component.html',
styleUrls: ['./date-picker.component.scss'],
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => DatePickerComponent),
multi: true
}
], host: {
'(change)': 'onChange($event)',
'(blur)': 'onTouch()'
}
})
export class DatePickerComponent implements OnInit {
@Input() Value: Date = new Date();
@Input() PlaceHolder: string;
@Input() Label:string;
@Output() dateValueAction = new EventEmitter();
onChange: any = () => { };
onTouch: any = () => { };
constructor() { }
ngOnInit() {
}
set valueUpdated(val) {
this.Value = val;
this.onChange(val);
this.onTouch(val);
}
writeValue(obj: any): void {
this.Value = obj;
this.valueUpdated = obj;
}
registerOnChange(fn: any): void {
this.onChange = fn;
}
registerOnTouched(fn: any): void {
this.onTouch = fn;
}
dateValueChanged() {
this.valueUpdated = this.Value;
this.dateValueAction.emit(this.Value);
}
}
HTML:
<mat-form-field appearance="outline">
<mat-label>{{Label}}</mat-label>
<input matInput [matDatepicker]="picker" placeholder={{PlaceHolder}} [(value)]="Value" (dateChange)="dateValueChanged()">
<mat-datepicker-toggle matSuffix [for]="picker">
<mat-icon matDatepickerToggleIcon>calendar_today</mat-icon>
</mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
想用formControlName等实现
<app-date-picker formControlName="startDate">
答案 0 :(得分:1)
实施ControlValueAccessor
不应使用标准的输入/输出通信机制。
输入值由writeValue
提供,通过调用registerOnChange
提供的回调函数来通知控件中的更改形式(输出值)。
请尝试以下代码:
export class DatePickerComponent implements ControlValueAccessor {
private value: Date = new Date();
@Input() placeHolder: string;
@Input() label: string;
private onChange: Function;
private onTouch: Function;
writeValue(obj: Date): void {
this.value = obj;
}
registerOnChange(fn: Function): void {
this.onChange = fn;
}
registerOnTouched(fn: Function): void {
this.onTouch = fn;
}
dateValueChanged(): void {
this.onChange(this.value)
}
}
另一点是您直接在组件装饰器描述符中指定了类。
这样做不应该使用forwardRef
。
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: DatePickerComponent,
multi: true
}
]