別の親 DTO から拡張する 3 つの DTO を作成し、コントローラーでクラスバリデーター ライブラリーを使用して、ユーザーがコントローラーに渡すデータを検証します。
親.dto.ts
import { IsNotEmpty, IsString, IsDateString, IsMongoId } from 'class-validator';
export class Parent {
@IsNotEmpty()
@IsMongoId()
platform: string;
@IsNotEmpty()
@IsString({ each: true })
admins: string[];
@IsDateString()
purchaseDate: Date;
@IsDateString()
validFrom: Date;
@IsDateString()
validTo: Date;
}
a.dto.ts
import { IsMongoId, IsNotEmpty, ValidateNested } from 'class-validator';
import { Type } from 'class-transformer';
import { Parent } from './parent.dto';
class A_options {
@IsNotEmpty()
@IsMongoId()
dataA: string;
}
export class A extends Parent {
@IsNotEmpty()
testA: string;
@ValidateNested()
@Type(() => A_options)
data: A_options;
}
b.dto.ts
import { IsMongoId, IsNotEmpty, ValidateNested } from 'class-validator';
import { Type } from 'class-transformer';
import { Parent } from './parent.dto';
class B_options {
@IsNotEmpty()
@IsMongoId()
dataB: string;
}
export class B extends Parent {
@IsNotEmpty()
testB: string;
@ValidateNested()
@Type(() => B_options)
data: B_options;
}
c.dto.ts
import { IsMongoId, IsNotEmpty, ValidateNested } from 'class-validator';
import { Type } from 'class-transformer';
import { Parent } from './parent.dto';
class C_options {
@IsNotEmpty()
@IsMongoId()
dataC: string;
}
export class C extends Parent {
@IsNotEmpty()
testC: string;
@ValidateNested()
@Type(() => C_options)
data: C_options;
}
そして、コントローラーで私はValidationPipe
設定を使用していますbody: A
controller.ts
@UsePipes(ValidationPipe)
@Post()
async createItem(@Res() res, @Body() body: A) {
const result = await this.createTest.createObject(body);
return res.status(HttpStatus.OK).json({
message: 'Item has been created successfully',
newLicense,
});
}
}
これは、body: B
およびbody: C
しかし、私がそうするとき、それはうまくいきませんbody: A | B | C
コードがこのようになるようにするにはどうすればよいですか?
@UsePipes(ValidationPipe)
@Post()
async createItem(@Res() res, @Body() body: A | B | C) {
const result = await this.createTest.createObject(body);
return res.status(HttpStatus.OK).json({
message: 'Item has been created successfully',
newLicense,
});
}
}