failed get objs: failed to list objs: json: cannot unmarshal number 2755523652316298479 into Go struct field ShareFile.data.list.cid of type int #6703
Unanswered
ThomasChooo
asked this question in
Q&A
Replies: 1 comment 1 reply
-
这个是不是应该提到Issue里或者你会修的话直接放到PR里? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
32位系统,armv7l,挂载115分享链接报的错,文件夹能看到,点进去文件夹看不到文件报的错,挂载自己的115网盘没问题,看报错是超过int范围了,能否修复这个问题?谢谢。
解决方法:
使用int64,它在32位系统中也是64位宽,可以存放更大的数值。
如果你需要处理的数值在int64范围之外,你可以使用math/big包中的Big类型,它可以处理任意大的整数。
Beta Was this translation helpful? Give feedback.
All reactions