如何用NestJs@Body解析JSON请求中的日期

How to parse dates in JSON request with NestJs @Body(如何用NestJs@Body解析JSON请求中的日期)
本文介绍了如何用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请求中的日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to minify json response?(如何缩小JSON反应?)
Error in render: TypeError: Cannot read property '' of undefined[Vue 警告]:渲染错误:TypeError: Cannot read property \\'object\\' of undefined这个...
Only want to compare TIME values MomentJS(只想比较时间值MomentJS)
How to access specific record from fixture/*.json file into sepcific test case in cypress?(如何将Fixture/*.json文件中的特定记录访问到Cypress中特定的测试用例中?)
How to have a external JSON config file in react jsx(如何在React JSX中拥有外部JSON配置文件)
Visualize a nested JSON structure(可视化嵌套的JSON结构)