gpt4 book ai didi

angular - 自定义验证访问表单组件

转载 作者:太空狗 更新时间:2023-10-29 17:58:33 26 4
gpt4 key购买 nike

我想对 angular2 进行自定义验证。此验证必须访问表单的另一个组件。这可能吗?

我的模板

<input type="tekst" id="startDate" name="startDate" [(ngModel)]="model.startDate" #startDate="ngModel" >

<input type="tekst" id="endDate" name="endDate" [(ngModel)]="model.endDate" #endDate="ngModel" customValidator>

我的验证器

...
@Directive({
selector: '[customValidator][ngModel][customValidator][formControl]',
providers: [
provide : NG_VALIDATORS,
useExisting : forwardRef(() = > CustomValidator),
Multi : true
}]
})

export class CustomValidator impelments Validator {
constructor(){}

validate(c : FormControl) : {[key : string] : any} {

// HOW TO ACCESS startDate CONTROL HERE? OR ITS VALUE? OR THE MODEL
}

最佳答案

如果您想实现交叉验证,您应该将验证移至祖先控件。

然后你的验证方法看起来像这样:

validate(fg: FormGroup) {
const start = fg.get('startDate').value;
const end = fg.get('enDate').value;

return start !== null && end !== null && start < end
? null
: { range: true };
};

阅读更多关于交叉验证的信息 here .

关于angular - 自定义验证访问表单组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49995931/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com