关于nestjs:NestJS-校验数据类型

4次阅读

共计 605 个字符,预计需要花费 2 分钟才能阅读完成。

记录当 NestJSbody申请体是数组对象时,dto的应用:

dto.ts:

import {IsNumber, Min, IsNotEmpty, IsOptional, IsString} from 'class-validator';

export class UserDto {@IsNotEmpty()
  @IsString()
  readonly name!: string;

  @IsNotEmpty()
  @IsNumber()
  @Min(0)
  readonly age!: number;

  @IsNotEmpty()
  @IsString()
  readonly city!: string;

  @IsOptional()
  @IsString()
  readonly description?: string;
}

controller.ts

import {UserDto} from "./dto";
import {
  Controller,
  Post,
  Body,
  ParseArrayPipe
} from "@nestjs/common";

@Controller("/")
export class TestController {@Post("test/dto")
  public async userInfo(
    @Body(
      new ParseArrayPipe({items: UserDto,}))
    data: UserDto[]) {return 'request success'}
} 

成果:
error:

success

正文完
 0