JS 中后端返回int64 导致数字不正确
js中没有整数至于浮点数
console.log(Number.Max_Value)
console.log(Number.MAX_SAFE_INTEGER)
JS 中的Number类型
- 只能安全地表示-9007199254740991 (-(2^53-1)) 和9007199254740991(2^53-1)之间的整数
因此int64 不会被正确的处理
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/16409355.html