基本上,我有一些表单输入,其验证彼此依赖(即,如果您输入的是时间范围,则“开始”时间必须小于“结束”时间),但我并不完全确定该怎么做。
这是我的表单组:
this.form = this.fb.group({
fromTime: ["", [Validators.required, CustomValidator.myValidationFunction(this.form.get("toTime").value)]],
toTime: ["", [Validators.required]]
});
这是到目前为止我的验证器:
static myValidationFunction(testing) {
const toTime = testing; // only comes here 1 time
return control => {
return toTime /*this value never changes*/ ? null : { test: {} };
};
}
,但是好像值x
或toTime
仅在创建验证器时才第一次设置。有没有办法将动态输入传递给自定义验证器?
我对angular还是很陌生,但是已经阅读了custom form validation上的文档,但似乎找不到我的答案
答案 0 :(得分:2)
static TimeValidator(formGroup) {
const fromTime = formGroup.controls.fromTime;
const toTime = formGroup.controls.toTime;
if (fromTime.value && toTime.value) {
if (toTime.value <= fromTime.value) {
return {time: true};
}
}
return null;
}
ngOnInit(): void {
this.form = new FormGroup({
fromTime: new FormControl('', Validators.required),
toTime: new FormControl('', Validators.required)
}, AppComponent.TimeValidator);
this.form.controls.fromTime.setValue(2);
this.form.controls.toTime.setValue(1);
}
在html中,您可以通过以下方式进行检查:
{{form.hasError('time')}}
随时询问您是否有疑问。