wx.getStorage(Object object) 您所在的位置:网站首页 isdirectoty怎么读 wx.getStorage(Object object)

wx.getStorage(Object object)

2023-11-04 06:57| 来源: 网络整理| 查看: 265

# wx.getStorage(Object object)

以 Promise 风格 调用:支持

小程序插件:支持,需要小程序基础库版本不低于 1.9.6

微信 Windows 版:支持

微信 Mac 版:支持

相关文档: 存储策略

# 功能描述

从本地缓存中异步获取指定 key 的内容。

# 参数 # Object object 属性 类型 默认值 必填 说明 最低版本 key string 是 本地缓存中指定的 key encrypt Boolean false 否 是否开启加密存储。只有异步的 getStorage 接口支持开启加密存储。开启后,将会对 data 使用 AES128 解密,接口回调耗时将会增加。若开启加密存储,setStorage 和 getStorage 需要同时声明 encrypt 的值为 true 2.21.3 success function 否 接口调用成功的回调函数 fail function 否 接口调用失败的回调函数 complete function 否 接口调用结束的回调函数(调用成功、失败都会执行) # object.success 回调函数 # 参数 # Object res 属性 类型 说明 data any key对应的内容# 示例代码 wx.getStorage({ key: 'key', success (res) { console.log(res.data) } }) // 开启加密存储 wx.setStorage({ key: "key", data: "value", encrypt: true, // 若开启加密存储,setStorage 和 getStorage 需要同时声明 encrypt 的值为 true success() { wx.getStorage({ key: "key", encrypt: true, // 若开启加密存储,setStorage 和 getStorage 需要同时声明 encrypt 的值为 true success(res) { console.log(res.data) } }) } })


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有