gpt4 book ai didi

angular - angular 2中的多个自定义验证

转载 作者:行者123 更新时间:2023-12-01 00:32:14 27 4
gpt4 key购买 nike

我在向表单添加多个自定义验证时遇到问题。我只能向我的表单添加一个自定义验证。如何添加多个验证。

例如:

this.user = this.fb.group({
name: ['', Validators.required],
account: this.fb.group({
email: ['', Validators.required],
confirm: ['', Validators.required]
}, { validator: emailMatcher })
});

我想添加更多验证,例如:{ validator: [emailMatcher, matchPassword, othervalidation]}

angular 2 中有什么可以帮助我的吗?

最佳答案

代替:

{ validator: emailMatcher })

使用语法:

{ validators:  [emailMatcher, matchPassword, othervalidation]}

祝你好运。

关于angular - angular 2中的多个自定义验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45880097/

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