几个页面之前缓存了两张图片数据,然后隔了几个页面想取偶发性的有用户反映无法取到值。这是为什么?
if (flag === "IdFrontPic") {
wx.setStorageSync('Content', base64)
console.log("urlTobase64->Content已经设置");
} else {
wx.setStorageSync('FileContent', base64)
console.log("urlTobase64->FileContent已经设置");
}
//..................
let content = wx.getStorageSync('Content')
let fileContent = wx.getStorageSync('FileContent')
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。