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
tsrpc/src/server/base/ApiCall.ts
Line 199 in a4f492c
return { isSucc: true, output: type === 'json' ? json : JSON.stringify( json, (key, value) => (typeof value === 'bigint' ? value.toString() : value) ) };
不知道这样解决合不合理
The text was updated successfully, but these errors were encountered:
感谢建议,JSON 确实还没有支持 bigint,可以考虑用二进制传输。 后续会优化支持~
Sorry, something went wrong.
No branches or pull requests
tsrpc/src/server/base/ApiCall.ts
Line 199 in a4f492c
能否改为
不知道这样解决合不合理
The text was updated successfully, but these errors were encountered: