作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我觉得 this thread 和 this thread 的组合是我需要实现的,我无法将它们绘制在一起。
我有一个包含 enum
的 DTO。
使用 Postman,我发送 PurchasableType
的 FOO
并期望得到某种错误。通读上面的链接,这个过程似乎相当复杂;这让我觉得我完全没有捕获重点。
如何使用验证管道来确保只允许 purchasable-type.enum.ts
中的值?
感谢您的任何建议!
// create-order.dto.ts
import { IsEmail, IsNotEmpty, IsEnum } from 'class-validator';
import { PurchasableType } from '../enum/purchaseable-type.enum';
export class CreateOrderDto {
@IsNotEmpty()
readonly userId: string;
@IsNotEmpty()
readonly locationId: string;
@IsNotEmpty()
@IsEnum(PurchasableType)
readonly purchasableType: PurchasableType;
@IsNotEmpty()
@IsEmail()
readonly email: string;
}
// purchasable-type.enum.ts
export enum PurchasableType {
CLINIC = 'CLINIC',
EVENT = 'EVENT',
LESSON = 'LESSON',
RESERVATION = 'RESERVATION',
TEAM = 'TEAM',
}
编辑
// order.entity.ts
...
import { PurchasableType } from '../enum/purchaseable-type.enum';
@Entity()
export class Order extends BaseEntity {
@PrimaryGeneratedColumn()
id: number;
@Column({
type: 'enum',
enum: PurchasableType,
})
现在,当我发送
purchasableType
的
foo
时,出现 500 错误。如果我发送
enum
内的任何有效值,我将得到 200/201。
// event.controller.ts
@Post('/:id/orders')
async purchaseEventTickets(@Body() createOrderDto: CreateOrderDto):
Promise<Order> {
return await this.eventService.purchaseEventTickets(createOrderDto);
}
// create-order.dto.ts
export class CreateOrderDto {
@IsNotEmpty()
@IsEnum(PurchasableType)
readonly purchasableType: PurchasableType;
}
// event.service.ts
async purchaseEventTickets(createOrderDto: CreateOrderDto): Promise<Order> {
...
return await this.orderRepository.createOrder(createOrderDto);
}
// order.repository.ts
async createOrder(createOrderDto: CreateOrderDto): Promise<Order> {
const { purchasableType } = createOrderDto;
const order = this.create();
order.purchasableType = purchasableType;
try {
await order.save();
} catch (error) {
this.logger.error(`Failed to create the order: ${error.stack}`);
throw new InternalServerErrorException();
}
return order;
}
使用 Postman,如果我将无效的“Foo”值作为
PurchasableType
发送,我会得到预期的错误。
最佳答案
我花了一段时间才找到一个好的解决方案。
@ApiProperty({
description: 'List of enums',
isArray: true,
enum: MyEnum
})
@IsEnum(MyEnum, { each: true })
prop: MyEnum[];
关于nestjs - 如何使用 Nestjs 验证枚举值数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63427319/
我是一名优秀的程序员,十分优秀!