我正在使用管道进行请求验证。如果请求失败,我想重定向页面但不想抛出错误。问题是如何在验证中访问响应对象。
这是我的验证管道。
@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()函数
最佳答案
response
对象在pipe
的上下文中不可用。您可以做的是A)改用interceptor
或B)引发异常并使用filter
捕获此特定异常并重定向到正确的位置。Pipes
仅用于验证或对象转换,并因此而获得成功返回(具有可能已转换的对象)或抛出有关转换/验证失败原因的错误。