You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
이슈 : DTO에서 데코레이터를 통해 validation.pipe 유효성 체크를 진행할 때, Length 데코레이터의 String 값의 경우 예상대로 동작 하나, Number의 경우 예상치 못한 방향으로 동작함.
해결 방안 : String인 경우 Length 데코레이터 사용하고, Number인 경우는 Max 데코레이터를 활용
사용 방법 :
[ Number인 경우 ]
@Max(9999999999) // 실제 값 0~9999999999
[ String인 경우 ]
1) notEmpty
@Length(특정 값, 4) // 특정 자리 ~ 4자리 까지
2) optional
@Length(0, 4) // ~ 4자리 까지
The text was updated successfully, but these errors were encountered:
이슈 : DTO에서 데코레이터를 통해 validation.pipe 유효성 체크를 진행할 때, Length 데코레이터의 String 값의 경우 예상대로 동작 하나, Number의 경우 예상치 못한 방향으로 동작함.
해결 방안 : String인 경우 Length 데코레이터 사용하고, Number인 경우는 Max 데코레이터를 활용
사용 방법 :
The text was updated successfully, but these errors were encountered: