本文介绍了如何用NestJs@Body解析JSON请求中的日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个DTO,如下所示:
class PersonDto {
readonly name: string;
readonly birthDate: Date;
}
我的NestJs控制器方法如下所示:
@Post
create(@Body() person: PersonDto) {
console.log("New person with the following data:", person);
// more logic here
}
发布的JSON数据具有birthDate
作为字符串:"2020-01-15"
。如何将此字符串转换为JavaScriptDate
对象?我想将@IsDate
类验证添加到PersonDto
,但目前该操作将失败。
推荐答案
我了解了如何将全局ValidationPipe
与Date属性和@IsDate()
批注一起使用:
第一步是允许这样的转换(以我的引导文件为例):
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.useGlobalPipes(new ValidationPipe({transform: true}));
await app.listen(3000);
}
bootstrap();
然后您需要使用@Type()
批注来批注DTO:
import { IsDate } from 'class-validator';
import { Type } from 'class-transformer';
class PersonDto {
readonly name: string;
@Type(() => Date)
@IsDate()
readonly birthDate: Date;
}
这篇关于如何用NestJs@Body解析JSON请求中的日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!