wx.getstorage(object)
从本地缓存中异步获取指定 key 对应的内容。
object参数说明:
[tr]参数类型必填说明[/tr]
}) wx.getStorageSync(KEY)
从本地缓存中同步获取指定 key 对应的内容。
参数说明:
[tr]参数类型必填说明[/tr]
示例代码:
try { var value = wx.getStorageSync( #39;key #39;) if (value) { // Do something with return value } catch(e) { // Do something when catch error wx.getStorageInfo(OBJECT)
异步获取当前storage的相关信息
OBJECT参数说明:
[tr]参数类型必填说明[/tr]
success返回参数说明:
[tr]参数类型说明[/tr]
示例代码:
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参数说明:
[tr]参数类型必填说明[/tr]
示例代码:
wx.removeStorage({ key: #39;key #39;, success: function(res) { console.log(res.data) }) wx.removeStorageSync(KEY)
从本地缓存中同步移除指定 key 。
参数说明:
[tr]参数类型必填说明[/tr]
示例代码:
try { wx.removeStorageSync( #39;key #39;) } catch(e) { // Do something when catch error }
更多微信小程序:新增数据管理 API 相关文章请关注PHP中文网!
微信app下载
微信是一款手机通信软件,支持通过手机网络发送语音短信、视频、图片和文字。微信可以单聊及群聊,还能根据地理位置找到附近的人,带给大家全新的移动沟通体验,有需要的小伙伴快来保存下载体验吧!