微信小程序本地存储的异步同步用法详解 - 新闻资讯 - 云南小程序开发|云南软件开发|云南网站建设-昆明葵宇信息科技有限公司

159-8711-8523

云南网建设/小程序开发/软件开发

知识

不管是网站,软件还是小程序,都要直接或间接能为您产生价值,我们在追求其视觉表现的同时,更侧重于功能的便捷,营销的便利,运营的高效,让网站成为营销工具,让软件能切实提升企业内部管理水平和效率。优秀的程序为后期升级提供便捷的支持!

您当前位置>首页 » 新闻资讯 » 小程序相关 >

微信小程序本地存储的异步同步用法详解

发表时间:2020-10-6

发布人:葵宇科技

浏览次数:40

官网:https://developers.weixin.qq.com/miniprogram/dev/api/storage/wx.setStorageSync.html

一:同步

  1. wx.setStorageSync(); //存储值
 try {
   wx.setStorageSync('key', 'value')
 } catch (e) {
 
  }

  1. wx.getStorageSync(); // 获取值
 try {
  var value = wx.getStorageSync('key')
   if (value) {
    // Do something with return value
   }
 } catch (e) {
   // Do something when catch error
 }

  1. wx.removeStorageSync(); // 移除指定的值
 try {
   wx.removeStorageSync('key')
 } catch (e) {
   // Do something when catch error
 }

  1. wx.getStorageInfoSync(); // 获取当前 storage 中所有的 key
try {
  const res = wx.getStorageInfoSync()
   console.log(res.keys)
  console.log(res.currentSize)
  console.log(res.limitSize)
 } catch (e) {
   // Do something when catch error
 }

  1. wx.clearStorageSync(); // 清除所有的key
 try {
  wx.clearStorageSync()
 } catch(e) {
   // Do something when catch error
 }

二、异步

(1)wx.setStorage(); //存储值
单个 key 允许存储的最大数据长度为 1MB,所有数据存储上限为 10MB。

wx.setStorage({
 key:"key",
 data:"value"})

  1. wx.removeStorage(); // 移除指定的值
 wx.removeStorage({
  key: 'key',
  success (res) {
    console.log(res)
      }})

  1. wx.getStorage(); // 获取值
 wx.getStorage({
  key: 'key',
   success (res) {
    console.log(res.data)
   }})

  1. wx.getStorageInfo(); // 获取当前 storage 中所有的 key
wx.getStorageInfo({
  success (res) {
      console.log(res.keys)
   console.log(res.currentSize)
   console.log(res.limitSize)
 }})

  1. wx.clearStorage(); // 清除所有的key
wx.clearStorage()

相关案例查看更多