Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

227
Visualizações
How can i set when to run Typescript decorators

When I define a parameterized decorator for the method, the decorator starts running before the method runs.

I want the decorator to run after the method is called.

 function fooDecorator(value: boolean) {
  console.log('fooDecorator init');
  return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {
  };
}

class Foo{


  @fooDecorator(true)
  foo(){

  }

}

app.listen(5000, () => console.log("server started"));




// Output 
fooDecoratorinit
server started
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

TypeScript method decorators run during class initialization, so they can decorate the method; see the documentation. If you want a decorator to do something when the method is called, you have the decorator wrap the method in another function that does the thing you want it to do:

function fooDecorator(flag: boolean) {
    return function (target: any, propertyKey: string; descriptor: PropertyDescriptor) {
        const original = target[propertyKey];
        return {
            ...descriptor,
            value(...args: any[]) {
                console.log("Inserted behavior, flag = " + flag);
                return original.apply(this, args);
            }
        }
    };
}

class Foo{
    @fooDecorator(true)
    foo(){
        console.log("Original foo");
    }
}

const f = new Foo();
f.foo();

Playground link

Output:

Inserted behavior, flag = true
Original foo
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda