您可以使用类变压器库。您可以将它与class-validator一起使用来强制转换和验证 POST 参数。
例子:
@Exclude()
class SkillNewDto {
@Expose()
@ApiModelProperty({ required: true })
@IsString()
@MaxLength(60)
name: string;
@Expose()
@ApiModelProperty({
required: true,
type: Number,
isArray: true,
})
@IsArray()
@IsInt({ each: true })
@IsOptional()
categories: number[];
}
Exclude
这里Expose
是class-transform
为了避免额外的字段。
IsString
, IsArray
, IsOptional
, IsInt
,MaxLength
来自class-validator
。
ApiModelProperty
用于 Swagger 文档
接着
const skillDto = plainToClass(SkillNewDto, body);
const errors = await validate(skillDto);
if (errors.length) {
throw new BadRequestException('Invalid skill', this.modelHelper.modelErrorsToReadable(errors));
}