We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
이슈 :
원인 :
해결 방안 :
응답
BigInt 값
number
변환
BigInt를 number로 변환하는 interceptor를 구현
일괄 적용
저장
JSON.stringify()
참고 사항 :
숫자n
숫자
The text was updated successfully, but these errors were encountered:
No branches or pull requests
이슈 :
원인 :
해결 방안 :
응답
시:BigInt 값
을 숫자(number
)로변환
하여 반환.이를 통해 BigInt가 클라이언트로 전달되기 전에 직렬화 문제가 해결됨.
(
BigInt를 number로 변환하는 interceptor를 구현
하여일괄 적용
되도록 함)저장
시:BigInt 값
을JSON.stringify()
로 문자열로변환
하여 저장.Prisma에서 BigInt를 지원하지 않는 JSON 컬럼에 저장할 때, 문자열로 변환하여 안전하게 저장
참고 사항 :
숫자n
형식으로 반환되지 않고숫자
형식으로 반환됨The text was updated successfully, but these errors were encountered: