- 存缓存:wx.setStorageSync(‘key’, data) , data是你要存入的数据
- 取缓存: wx.getStorageSync(‘key’)
- 清除指定key的缓存:wx.removeStorageSync(‘key’)
- 清除所有缓存: wx.clearStorageSync()
.js文件
data: {
address: ''
},
demo: function () {
wx.setStorageSync('address', res.data.result.ad_info.city) // 存缓存
this.setData({
address: wx.getStorageSync('address') // 取缓存
})
},