最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Nest.js use custom value in the request object - Stack Overflow

programmeradmin0浏览0评论

I create a guard that are like these

import { Injectable, CanActivate, ExecutionContext } from '@nestjs/mon';
import { AuthService } from './auth.service';

@Injectable()
export class CompanyGuard implements CanActivate {
  constructor(private readonly authService: AuthService) {}

  async canActivate(context: ExecutionContext): Promise<boolean> {
    const request = context.switchToHttp().getRequest();
    const token = request.headers['token'];
    if (token) {
      const pany = await this.authService.validateToken(token);
      return pany ? true : false;
    } else {
      return false;
    }
  }
}

I want to keep the value of pany on the request object, so I can use it later on my controller. How to do that in Nest.js? I tried to look it on the docs, but I'm confused. Should I use the session or there are more simple way to do that?

I create a guard that are like these

import { Injectable, CanActivate, ExecutionContext } from '@nestjs/mon';
import { AuthService } from './auth.service';

@Injectable()
export class CompanyGuard implements CanActivate {
  constructor(private readonly authService: AuthService) {}

  async canActivate(context: ExecutionContext): Promise<boolean> {
    const request = context.switchToHttp().getRequest();
    const token = request.headers['token'];
    if (token) {
      const pany = await this.authService.validateToken(token);
      return pany ? true : false;
    } else {
      return false;
    }
  }
}

I want to keep the value of pany on the request object, so I can use it later on my controller. How to do that in Nest.js? I tried to look it on the docs, but I'm confused. Should I use the session or there are more simple way to do that?

Share Improve this question edited May 11, 2021 at 3:07 SuperStormer 5,4275 gold badges28 silver badges39 bronze badges asked May 11, 2021 at 3:01 mandaputtramandaputtra 1,0705 gold badges23 silver badges41 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

You can just add the pany to a custom field on the request. request.pany = pany and then in the controller you can use @Req() to get the request object and .pany to get the pany value. Or you could create a custom decorator to get the pany for you.

发布评论

评论列表(0)

  1. 暂无评论