页面缓存
小程序中把数据存入本地,键值对
如果数据量较大,对数据进行缓存
//获取本地数据
let Cates = wx.getStorageSync('cates')
if (!Cates) {
this.getCates()
} else {
//过期时间
if (Date.now() - Cates.time > 1000*6*5) {
this.getCates()
} else {//使用本地数据
this.Cates = Cates
let leftMenuList = this.Cates.map(x => x.cat_name)
let rightContent = this.Cates[0].children
this.setData({
leftMenuList,
rightContent
})
}
}