📜  TextInput 是电子邮件类型 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:29.984000             🧑  作者: Mango

代码示例2
validate = (text) => {
  console.log(text);
  let reg = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
  if (reg.test(text) === false) {
    console.log("Email is Not Correct");
    this.setState({ email: text })
    return false;
  }
  else {
    this.setState({ email: text })
    console.log("Email is Correct");
  }
}