获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
app.js util.request(api.GetUserId, data, 'POST').then(res => { if (res.code == 200) { this.globalData.userId = res.data wx.setStorageSync('userId', res.data) } else { // util.showErrorToast(res.message); } }) pages/test/test.js onShow: function() { try { let userId = wx.getStorageSync('userId') if (userId) { this.setData({ userId: userId, }) } } catch (e) { // Do something when catch error }
小程序wx.setStorageSync后,在用getStorageSync获取数据有时会获取不到[图片] [图片] https://developers.weixin.qq.com/miniprogram/dev/api/storage/wx.getStorageSync.html 这个页面的两种获取方法都测试过,还是偶尔出现获取不到的情况
2020-04-21