Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: <@ValidateNested() Fails When Used with @Transform() in NestJS DTO Validation> #2589

Open
nhattan1504 opened this issue Mar 16, 2025 · 1 comment
Labels
status: needs triage Issues which needs to be reproduced to be verified report. type: fix Issues describing a broken feature.

Comments

@nhattan1504
Copy link

Description

In NestJS, when using @Transform() to parse JSON-formatted form-data values while also applying @ValidateNested(), the validation process fails.

Minimal code-snippet showcasing the problem

import { Type, Transform } from 'class-transformer';
import { ArrayMinSize, IsArray, ValidateNested, IsString, IsEmail, IsEnum, IsInt } from 'class-validator';

export enum RequestType {
  SIGNER = 'SIGNER',
  VIEWER = 'VIEWER',
}

export class SignerDto {
  @IsString()
  id: string;

  @IsString()
  name: string;

  @IsEmail()
  email: string;

  @IsEnum(RequestType)
  requestType: RequestType;

  @IsInt()
  group: number;
}

export class CreateContractFromFileDto {
  @Transform(({ value }) => {
return JSON.parse(value); // Convert string to object
    })
  @IsArray()
  @ValidateNested({ each: true })
  @Type(() => SignerDto)
  signerList: SignerDto[];
}

Expected behavior

It should validate the field inside SignerDTO

Actual behavior

I tried with this

curl -X POST http://localhost:3000/contract/createContractFromFile \
  -H "Content-Type: multipart/form-data" \
  -F 'signerList=[{\"id\":\"1\",\"name\":\"John Doe\",\"email\":\"[email protected]\",\"requestType\":\"SIGNER\",\"group\":1}]'

It can not definitely a path property and fail all data value.

An instance of CreateContractFromFileDto has failed the validation:\n - property signerList[0].undefined has failed the following constraints: unknownValue
@nhattan1504 nhattan1504 added status: needs triage Issues which needs to be reproduced to be verified report. type: fix Issues describing a broken feature. labels Mar 16, 2025
@DiegoMinatto
Copy link

@type(() => SignerDto) alone won't automatically convert plain objects to class instances during validation. You need plainToClass to handle the transformation.

Replace your transform with the following:

@Transform(({ value }) => {return plainToClass(SignerDto, JSON.parse(value)) }, {toClassOnly: true})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: needs triage Issues which needs to be reproduced to be verified report. type: fix Issues describing a broken feature.
Development

No branches or pull requests

2 participants