NestJS
NestJS DTO,Validation
1. 초기 방식 vs. DTO 사용 방식이전의 형태: @Body()로 각각의 필드를 개별적으로 가져오는 방식@Post('register/email')postRegisterEmail( @Body('email') email: string, @Body('password', new MaxLengthPipe(8), new MinLengthPipe(3)) password: string, @Body('nickname') nickname: string,) { return this.authService.registerWithEmail({ nickname, email, password, });}특징:모든 필드를 개별적으로 @Body()로 가져와야 함.각 필드마다 필요한 파이프(MaxLengthPi..
2024. 11. 18. 03:09