问题起源:前端jQuery通过ajax请求后台。带了一个伪int型参数(参数没有加引号),eg: id= 20190528110541143
后台接收是接收的string类型,实际收到值:string id = "20190528110541144" (int溢出,转为string自增了1)
解决方式:ajax的参数添加引号 id= ‘20190528110541143‘;
原文地址:https://www.cnblogs.com/yxcn/p/10936284.html
时间: 2024-10-06 00:03:32