作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我有嵌套应用程序 dto:
export class TestDto {
@IsNotEmpty()
id: number;
@IsNotEmpty()
slug: string;
@IsNotEmpty()
size: number;
}
和发布请求:
@Post(':id/start')
async startTest(
@Param('id') id: number,
@Request() req,
@Body() testDto?: TestDto
): Promise<RoomDto | string> {
return await this.roomsService.startTest(id, testDto);
}
我想从 body 中选择 testDto ,但是在发送请求时出现错误:
{
"statusCode": 400,
"message": [
"slug should not be empty",
"size should not be empty"
],
"error": "Bad Request"
}
如何实现这样的目标?
最佳答案
您必须将 IsNotEmpty 装饰器更改为 IsOptional,当您将问号添加到参数时,您告诉 Typescript 该值可以是未定义的,并且在运行时间中并不重要。
您可以在此处查看允许的装饰器:https://github.com/typestack/class-validator#validation-decorators
结果 DTO 将是这样的:
export class TestDto {
@IsNotEmpty()
id: number;
@IsOptional()
slug?: string;
@IsOptional()
size?: number;
}
关于javascript - 嵌套js可选body参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66122115/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!