我写在app.js中进行了缓存的写入读取都没问题,但是我的页面中的js文件就是读取不到app.js写入的缓存,有解吗?
就是在不同的生命周期中
console.log(‘list-onLoad’)
console.log(wx.getStorageSync(‘uuid’))
进行了两个Log
只有app.js中的有值
list是首页有tab栏的第一个页面的js
读取的代码呢?缓存里有没有数据,你打印的是啥?
try { if (wx.getStorageSync(‘uuid’) == “”) { wx.setStorageSync(‘uuid’, util.uuid()) } } catch (e) { wx.setStorageSync(‘uuid’, util.uuid()) }
try {
if (wx.getStorageSync(‘uuid’) == “”) {
wx.setStorageSync(‘uuid’, util.uuid())
}
} catch (e) {
其实我是这么写的,写在了app的onLaunch中,但是确实我在进入的第一个页面中的onReady中获取不到
你打印一下写入和存储,判断一些哪儿里出了问题再说
app.js中写入用的是setStorage()的话,可以改为setStorageSync()