本文整理汇总了TypeScript中@angular/forms.Validators.email方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Validators.email方法的具体用法?TypeScript Validators.email怎么用?TypeScript Validators.email使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@angular/forms.Validators
的用法示例。
在下文中一共展示了Validators.email方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: email
/**
* Validator that performs email validation. In contrast to the Angular
* email validator an empty email will not be handled as invalid.
*/
static email(control: AbstractControl): ValidationErrors | null {
// Exit immediately if value is empty.
if (isEmptyInputValue(control.value)) {
return null;
}
return Validators.email(control);
}
示例2: expect
() => expect(Validators.email(new FormControl('test@gmail.com'))).toBeNull());
示例3: expect
() => expect(Validators.email(new FormControl(null))).toBeNull());
示例4: emailOrEmpty
private emailOrEmpty(control: AbstractControl): ValidationErrors | null {
return control.value === '' ? null : Validators.email(control);
}