欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序实现写入读取缓存详解

程序员文章站 2023-11-26 12:57:52
在小程序中有些需要把数据缓存到storage中,需要的时候在读取缓存中的数据,在微信小程序中通过setstorage写入数据: wx.setstorage({...

在小程序中有些需要把数据缓存到storage中,需要的时候在读取缓存中的数据,在微信小程序中通过setstorage写入数据:

wx.setstorage({
   key: 'mydata',
   data: res.data.data
})

通过getstorage读取缓存中的数据:

var that = this;
  wx.getstorage({
   key: 'mydata',
   success: function (res) {
    var mydata = res.data;//读取key值为mydata的缓存数据
    that.setdata({//拿到缓存中的数据并渲染到页面
     username: mydata.user.truename,
     schoolname: mydata.school.name,
     classname: mydata.user.classname,
   }
})

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。