美文网首页
小程序的数据缓存(storage)

小程序的数据缓存(storage)

作者: 小扑 | 来源:发表于2018-11-15 11:43 被阅读0次

    1、数据缓存wx.setStorageSync('string',"object/string"),缓存的内容可以是 string 类型,也可以是 object 对象

    同步缓存wx.setStorageSync('key',"缓存内容")

    异步缓存wx.setStorage('key',"缓存内容")

    2、获取缓存数据wx.getStorageSync('string')(同步) wx.getStorage('string')(异步)

    3、清除缓存数据:

         a.单一清除:wx.removeStorageSync(同步)wx.removeStorage(异步)

        b.清除全部:wx.clearStorageSync(同步)wx.clearStorage(异步)

    注意:缓存的上限最大不能超过10M。

    相关文章

      网友评论

          本文标题:小程序的数据缓存(storage)

          本文链接:https://www.haomeiwen.com/subject/iagefqtx.html