跳至主要內容

微信小程序缓存不生效

...小于 1 分钟

微信小程序缓存不生效

原因:多个 setStorageSync 连续调用,只有最后一个才会执行,可能是被覆盖

wx.getStorage({
    key: 'authState',
    success: function (res) {
        const data = res.data
        data.nowTopicRecord = nowTopicRecord
        wx.setStorageSync('authState', data)
    }
})
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.5