使用正则表达式进行的typescript(ionic2)电子邮件验证

时间:2017-04-09 15:48:21

标签: javascript regex typescript ionic2 email-validation

我无法使用Typescript来验证电子邮件地址是否有效或使用正则表达式无效这是我所拥有的。
我收到了运行时错误"无法读取属性'值'未定义"

lags

完整代码

   public signup(email){
    var reg = /^([\w-\.]+@(?!lsu.edu)([\w-]+\.)+[\w-]{2,4})?$/
    if (reg.test(email.value) == false) {
    let alert = this.alertCtrl.create({
      title: 'Error ',
      subTitle: 'Invalid email.',
      buttons:['Try Again']
    });
    alert.present();
    return false;
  }
 }

0 个答案:

没有答案