Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

126
Vistas
Cannot read property 'emailAddressValidation' of undefined

I'm just learning node with MVC pattern.I made one Validation class to validate user data.

class UserValidation {
  constructor() {}

  emailAddressValidation(email) {
    console.log(email);
    const regularExpression =
      /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    return regularExpression.test(email.toLowerCase());
  }

  passwordValidation(password) {
    const regularExpression =
      /^(?=.*[0-9])(?=.*[!@#$%^&*])[a-zA-Z0-9!@#$%^&*]{6,16}$/;
  }

  loginValidation(req, res, next) {
    const { email, password } = req.body;
    console.log(email);
    this.emailAddressValidation('addad');
    // try {
    //   if (
    //     this.emailAddressValidation(email) &&
    //     this.passwordValidation(password)
    //   ) {
    //     next();
    //   } else {
    //     throw new Error(
    //       'All fields are Required.email,password.Password should be alpha numeric.'
    //     );
    //   }
    // } catch (error) {
    //   res.status(400).json({ err: 1, message: error.message });
    // }
  }

  NewUserValidation(req, res, next) {
    const { name, email, password, address, skills } = req.body;

    try {
      if (
        name &&
        this.emailAddressValidation(email) &&
        this.passwordValidation(password) &&
        address.length > 0 &&
        skills.length > 0
      ) {
        next();
      } else {
        throw new Error(
          'All fields are required.Name,email,password,Address,Skills.Password should be alphanumeric.'
        );
      }
    } catch (error) {
      res.status(400).json({ err: 1, message: error.message });
    }
  }
}

export default new UserValidation();

Something like this and using it in my route like this

router.post('/login', UserValidation.loginValidation);

But I don't know why I got this error

TypeError: Cannot read property 'emailAddressValidation' of undefined

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

this will refer to an instance of that class. You will have to initialize an object of UserValidation and call loginValidation on that object. Something like this:

const validator = UserValidation()
router.post('/login', validator.loginValidation);
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda