admin管理员组

文章数量:1429430

I have to collect all decorator value that appears in different place in my app as string and then saving them to database at runtime, i don't have to add them twice (in database and in code),

i have tried to do it but i could not figure out i use

Reflector api from nestjs as following

this.reflector.getAll<string>('access', context.getHandler())

but i could not get context.getHandler() during run time

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  app.useGlobalPipes(new ValidationPipe());
   

  // Here is where i want to save

  await app.listen(3000);

}
bootstrap();

here is my decorator

@HashPermission('access_value')

Please assist

I have to collect all decorator value that appears in different place in my app as string and then saving them to database at runtime, i don't have to add them twice (in database and in code),

i have tried to do it but i could not figure out i use

Reflector api from nestjs as following

this.reflector.getAll<string>('access', context.getHandler())

but i could not get context.getHandler() during run time

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  app.useGlobalPipes(new ValidationPipe());
   

  // Here is where i want to save

  await app.listen(3000);

}
bootstrap();

here is my decorator

@HashPermission('access_value')

Please assist

Share Improve this question asked Jun 14, 2021 at 11:46 Izweb TechnologiesIzweb Technologies 1582 silver badges9 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 7

For something like this, you'll either need to make use of something like Nest's undocumented DiscoveryService or a package like @golevelup/nestjs-discovery which is a friendly wrapper around Nest's package. You can then make use of methods like this.discoveryService.methodsAndControllerMethodsWithMetaAtKey to get the classes and methods that have that metadata, then you can use the reflector class on each method to get the metadata value.

本文标签: javascripthow to scan all decorators value at runtime in nestjsStack Overflow