赞
踩
前言:网上的教程好复杂好乱,没有把简要的东西概括出来,摸索了好多文章却最终靠自己的小测试解决了这个问题。记录以下次使用,分享给大家。
这是在获取到请求数据时,把请求到的数据写入缓存的操作
success(res) { var info = res.data.data; wx.setStorageSync( 'history', { acount: info.acount, add_time: info.add_time, id: info.id, last_time: info.last_time, phone: info.phone, teacher_name: info.teacher_name, wx_img: info.wx_img, wxacount: info.wxacount } ) }
使用缓存的位置这样写
wx.getStorage({
key: 'history',
success(res) {
console.log('我是缓存数据',res)
}
})
在使用缓存位置看到的效果图(PS:名字遮住了):
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。