从本地缓存中异步获取指定 key 对应的内容。
OBJECT参数说明:
参数 类型 必填 说明示例代码:
wx.getStorage({ key: 'key', success: function(res) { console.log(res.data) } }) wx.getStorageSync(KEY)从本地缓存中同步获取指定 key 对应的内容。
参数说明:
参数 类型 必填 说明示例代码:
try { var value = wx.getStorageSync('key') if (value) { // Do something with return value } } catch (e) { // Do something when catch error } wx.getStorageInfo(OBJECT)异步获取当前storage的相关信息
OBJECT参数说明:
参数 类型 必填 说明success返回参数说明:
参数 类型 说明示例代码:
wx.getStorageInfo({ success: function(res) { console.log(res.keys) console.log(res.currentSize) console.log(res.limitSize) } }) ### wx.getStorageInfoSync 同步获取当前storage的相关信息 **示例代码:** ```javascript try { var res = wx.getStorageInfoSync() console.log(res.keys) console.log(res.currentSize) console.log(res.limitSize) } catch (e) { // Do something when catch error } wx.removeStorage(OBJECT)从本地缓存中异步移除指定 key 。
OBJECT参数说明:
参数 类型 必填 说明示例代码:
wx.removeStorage({ key: 'key', success: function(res) { console.log(res.data) } }) wx.removeStorageSync(KEY)从本地缓存中同步移除指定 key 。
参数说明:
参数 类型 必填 说明示例代码:
try { wx.removeStorageSync('key') } catch (e) { // Do something when catch error }