Angular 6-电子邮件模式验证在组件中不起作用

时间:2019-02-22 07:14:10

标签: angular6

我正在使用正则表达式“ ^ [A-Za-z0-9 ._%+-] + @ [A-Za-z0-9 .-] +。[A-Za-z] {2,4} $”与Online RegexTester上的有效电子邮件完全匹配,但是在角组件中却无法使用。

angular.component.ts:

let emailRegex = new RegExp("^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$");
else if(this.webBillingUser.email && !this.webBillingUser.email.match(emailRegex)){
        this.alertService.warning('Invalid email address.', null, null);
        return false;
 }

请提出可能出问题的地方。

0 个答案:

没有答案