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

167
Vistas
¿Cómo usar decoradores de propiedades anidadas en Typescript sin que uno anule al otro?

Estoy creando mis propios decoradores Typescript para la validación, pero no funcionan juntos, solo se activa el primer decorador, el segundo se ignora. Los errors de propiedad deben tener un valor, porque la longitud pasada es inferior a 3 caracteres, pero se devuelve sin definir.

 function IsMoreThan(length: number) { return (target: any, propertyKey: string) => { let val = target[propertyKey]; const getter = () => val; const setter = (value: string) => { if (value.length <= length) { Object.defineProperty(target, 'errors', { value: `${propertyKey} must be more than ${length} characters`, configurable: true, }); } else { val = value; } }; Object.defineProperty(target, propertyKey, { get: getter, set: setter, configurable: true, }); }; } function IsString() { return (target: any, propertyKey: string) => { let val = target[propertyKey]; const getter = () => val; const setter = (value: string) => { const varType = typeof value; if (varType !== 'string') { Object.defineProperty(target, 'errors', { value: `${propertyKey} must be a string, received ${varType}`, configurable: true, }); } else { val = value; } }; Object.defineProperty(target, propertyKey, { get: getter, set: setter, configurable: true, }); }; } class CreateUserSerializer { @IsString() @IsMoreThan(3) public username: string; constructor(username: string) { this.username = username; } } const user = new CreateUserSerializer('aa'); console.log(user.errors);

Aquí hay un patio de juegos con el código para facilitar las pruebas: TS Playground

about 4 years ago · Juan Pablo Isaza
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