标签: javascript json node.js express bignum
在快递应用中,使用express.json中间件来解析HTTP正文数据。
app.use(express.json());
逻辑代码可以从rep.body对象获取HTTP post数据。例如,如果发布数据是
'{"uid": 2^53 + 10}' rep.body.uid will truncate uid value, it is not equal to 2^53 + 10
所以任何中间件或解决方案都可以解决这个问题吗?