我创建了一个自定义输入组件。我可以成功设置[[ngModel)]接收到的初始值,但是未处理对输入字段的任何更改。 更准确地说:writeValue最初被调用,setter不会。
该组件如下所示:
@Component({
selector: 'app-timepicker',
templateUrl: './timepicker.component.html',
styleUrls: ['./timepicker.component.scss'],
providers: [{provide: MatFormFieldControl, useExisting: forwardRef(() => NexupTimepickerComponent)}]
})
export class NexupTimepickerComponent implements OnDestroy, ControlValueAccessor {
autofilled: boolean;
// Subject for the changes on the input
stateChanges = new Subject<void>();
// Grouping of the input fields
parts: FormGroup;
public _onChange: any;
constructor(fb: FormBuilder, private fm: FocusMonitor, private elRef: ElementRef<HTMLElement>,
@Optional() @Self() public ngControl: NgControl
) {
this.parts = fb.group({
'hour': '',
'minute': ''
});
// control focus
fm.monitor(elRef.nativeElement, true).subscribe(origin => {
this.focused = !!origin;
this.stateChanges.next();
});
this._onChange = (_: any) => {
};
if (this.ngControl) {
this.ngControl.valueAccessor = this;
}
}
// value
@Input()
get value(): Time | null {
console.log('Getting value');
const n = this.parts.value;
if (n.hour.length === 2 && n.minute.length === 2) {
return new Time(n.hour, n.minute);
}
return null;
}
set value(time: Time | null) {
console.log('Setting value to: ', time);
time = time || new Time('', '');
this.parts.setValue({hour: time.hour, minute: time.minute});
this.stateChanges.next();
}
ngOnDestroy() {
this.stateChanges.complete();
this.fm.stopMonitoring(this.elRef.nativeElement);
}
registerOnChange(fn: any): void {
console.log('registered');
this._onChange = fn;
}
registerOnTouched(fn: any): void {
}
setDisabledState(isDisabled: boolean): void {
}
writeValue(value: any): void {
console.log('received value: ', value);
if ((value !== this.parts.getRawValue()) && value) {
console.log('writing value to: ', value);
this.parts.setValue({hour: value.hour, minute: value.minute});
console.log('new value: ', this.parts.getRawValue());
}
}
}
父组件中的HTML是这样的:
<mat-form-field appearance="outline">
<mat-label>End Time</mat-label>
<app-timepicker [required]="true"
[(ngModel)]="endTimeObject" #endTime="ngModel" name="endTime" ngDefaultControl>
</app-timepicker>
</mat-form-field>
答案 0 :(得分:0)
如果未调用设置器:设置值,通常是因为您没有更改“值”值,所以您应该做类似 this.value =“的事情。 ”。
要执行此操作并获得更多控制权,我通常在组件的内部输入上添加[formControl] =“ myControl”(如果我有一个:)),然后在组件中执行以下操作:
myControl = new FormControl();
this.myControl.onStatusChange.subscribe( (newValue) => {
this.value = newValue;
});
此外,[(ngModel)]不会更新是正常的,因为您永远不会调用this._onChange()回调。
registerOnChage方法为您提供了一个回调,在从组件内部更新值以通知ngModel / formControl时必须调用该回调。我认为您应该添加设置值:
set value(time: Time | null) {
console.log('Setting value to: ', time);
time = time || new Time('', '');
const newValue = {hour: time.hour, minute: time.minute};
this.parts.setValue(newValue );
this._onChange(newValue); // call the callback :)
this.stateChanges.next();
}
有关更多信息,您可以在此处找到controlValueAccessor的默认实现。您可以在使用ngModel的每个组件中扩展此类,并简单地更改值( this.value ='newValue'),还可以覆盖writeValue,因为它通常需要更改为组件所需的高度。 https://github.com/xrobert35/asi-ngtools/blob/master/src/components/common/default-control-value-accessor.ts