当我浏览Pipes文档时,我注意到我无法正确@IsInt()
验证application/x-www-form-urlencoded请求,因为我传递的所有值都作为字符串值接收。
我的 DTO 看起来像
import { IsString, IsInt } from 'class-validator';
export class CreateCatDto {
@IsString()
readonly name: string;
@IsInt()
readonly age: number;
@IsString()
readonly breed: string;
}
验证管道包含下一个代码
import { PipeTransform, Pipe, ArgumentMetadata, BadRequestException } from '@nestjs/common';
import { validate } from 'class-validator';
import { plainToClass } from 'class-transformer';
@Pipe()
export class ValidationPipe implements PipeTransform<any> {
async transform(value, metadata: ArgumentMetadata) {
const { metatype } = metadata;
if (!metatype || !this.toValidate(metatype)) {
return value;
}
const object = plainToClass(metatype, value);
const errors = await validate(object);
if (errors.length > 0) {
throw new BadRequestException('Validation failed');
}
return value;
}
private toValidate(metatype): boolean {
const types = [String, Boolean, Number, Array, Object];
return !types.find((type) => metatype === type);
}
}
- value - 请求正文值
- 对象- 通过类转换器值转换
- 错误- 错误对象
如您所见,错误告诉我们年龄必须是整数。
如何通过application/x-www-form-urlencoded请求的@IsInt()
验证?
库版本:
- @nestjs/common@4.6.4
- 类变压器@0.1.8
- 类验证器@0.8.1
PS:我还创建了一个存储库,您可以在其中运行应用程序来测试错误。所需的分支how-to-pass-int-validation
UPD:从接受的答案进行更改后,我遇到了将错误的解析数据存储到存储中的问题。记录示例
是否有可能得到很好的解析createCatDto
或者我需要做些什么来用正确的类型结构保存它?