管道中的NestJS访问响应对象

时间:2019-06-17 10:06:28

标签: node.js typescript nestjs

我正在使用管道进行请求验证。如果请求失败,我想重定向页面但不想抛出错误。问题是如何在验证中访问响应对象。

这是我的验证管道。

@Injectable()
export class ValidationPipe implements PipeTransform<any> {
  async transform(value: any, { metatype }: ArgumentMetadata) {
    if (!metatype || !this.toValidate(metatype)) {
      return value;
    }
    const object = plainToClass(metatype, value);
    const errors = await validate(object);
    if (errors.length > 0) {
     // in here i need to response with res.redirect('') function
      throw new BadRequestException('Validation failed');
    }
    return value;
  }
  private toValidate(metatype: Function): boolean {
    const types: Function[] = [String, Boolean, Number, Array, Object];
    return !types.includes(metatype);
  }
}

我需要访问res.redirect()函数而不是引发异常

1 个答案:

答案 0 :(得分:1)

response对象在pipe的上下文中不可用。您可以做的是A)改用interceptor或B)抛出异常并使用filter捕获此特定异常并重定向到正确的位置。

Pipes仅用于验证或对象转换,并因此而获得成功返回(具有可能已转换的对象)或抛出有关转换/验证失败原因的错误。