首页 热点资讯 义务教育 高等教育 出国留学 考研考公

打开微信小程序时提示”此小程序已过期,请谨慎使用“怎么办?

发布网友 发布时间:2022-04-23 13:57

我来回答

2个回答

懂视网 时间:2022-05-18 20:43

关于本地缓存

1.wx.setStorage(wx.setStorageSync)、wx.getStorage(wx.getStorageSync)、wx.clearStorage(wx.clearStorageSync)可以对本地缓存进行设置、获取和清理。本地缓存最大为10MB

2.localStorage 是永久存储

相应的api----------

wx.setStorage(OBJECT)

wx.getStorage(OBJECT)

wx.getStorageInfo(OBJECT)

wx.removeStorage(OBJECT)

wx.setStorageSync(KEY,DATA)

 

wx.getStorageSync(KEY)

wx.getStorageInfoSync

wx.clearStorage()

wx.clearStorageSync() ...

Api的具体使用详见官方文档

微信小程序缓存过期时间

 /*
 *创建缓存
 * @param e 缓存名称
 * @param t 缓存值
 * @param i 缓存时间
 */
 setCache: function(e, t, i) {
 var n = +new Date / 1000,
 a = true,
 o = {
 expire: i ? n + parseInt(i) : 0,
 value: t
 };
 try {
 wx.setStorageSync(e, o)
 } catch (e) {
 a = false
 }
 return a
 },
 /*
 *获取缓存
 * @param e 缓存名称
 * @param t 缓存值
 */
 getCache: function(e, t) {
 var i = +new Date / 1000,
 n = "";
 i = parseInt(i);
 try {
 n = wx.getStorageSync(e), n.expire > i || 0 == n.expire ? n = n.value : (n = "", this.removeCache(e))
 } catch (e) {
 n = void 0 === t ? "" : t
 }
 return n = n || ""
 },
 /*
 *清除缓存
 * @param e 缓存名称
 */
 removeCache: function(e) {
 var t = true;
 try {
 wx.removeStorageSync(e)
 } catch (e) {
 t = false
 }
 return t
 },

热心网友 时间:2022-05-18 17:51

可能是由于缓存版本老旧造成的,点击右上角的三个小点,再点击进入小程序首页,这时就会进入当前小程序最新的主页面。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com