本文主要是介绍微信小程序 本地缓存wx.setStorage缓存设置和wx.removeStorage缓存删除,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Page({/*** 页面的初始数据*/data: {storageData: []},/*** 生命周期函数--监听页面加载*/onLoad: function(options) {var that = this;console.log("getStorageSync " + Array.isArray(wx.getStorageSync('testKey')));if (!Array.isArray(wx.getStorageSync('testKey'))) //判断本地缓存是否数组{wx.setStorage({key: 'testKey',data: that.data.storageData})}},// 删除本地缓存delBtnClick: function() {var that = this;wx.removeStorage({key: 'testKey',success: function(res) {that.setData({storageData: []})},})},// 添加本地缓存addBtnClick: function() {var that = this;if (!Array.isArray(wx.getStorageSync('testKey'))) //判断本地缓存是否数组{wx.setStorage({key: 'testKey',data: that.data.storageData})} else {
这篇关于微信小程序 本地缓存wx.setStorage缓存设置和wx.removeStorage缓存删除的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!