问题模块 框架类型 问题类型 终端类型 操作系统 微信版本 基础库版本
框架 微信小程序 Bug 客户端 Android 6.6.6 2.0.2
- 需求的场景描述(希望解决的问题)
- 希望提供的能力
这是我通过wx.request请求回来的数据,但是服务端给的uid是java的long类型 断点看到的数据是991988138196881408,但是拿到微信小程序中后,最后2位被00替换了这是什么原因??
代码片段
function http(url, callBack) { var token = wx.getStorageSync('uToken') console.log("http",url) console.log("token:",token) wx.request({ url: url, method: 'GET', header: { "Content-Type": "json", "token": token }, success: function (res) { if(res.code == -1){ wx.showToast({ title: res.message, }) }else{ callBack(res); } }, fail: function (error) { console.log(error) } }) }
微信小程序开发问题解答
本文网址:http://www.91bianli.com/weixinxiaochengxu/48552.html