小程序使用缓存


设置缓存

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

移除缓存

wx.removeStorage({
  key: 'key',
  success (res) {
    console.log(res)
  }
})

获取缓存

wx.getStorage({
  key: 'key',
  success (res) {
    console.log(res.data)
  }
})

清理缓存

wx.clearStorage()

封装一个Storage

export default {
  set: (data, key = 'userData') => {
    return wx.setStorageSync(key, data);
  },
  get: (key = 'userData') => {
    return wx.getStorageSync(key);
  },
  remove: (key = 'userData') => {
    return wx.removeStorageSync(key);
  },
  clear: () => {
    return wx.clearStorageSync();
  },
  Set: (data, key = 'userData') => {
    return wx.setStorage({ key, data });
  },
  Get: (key = 'userData') => {
    return wx.getStorage({ key });
  },
  Remove: (key = 'userData') => {
    return wx.removeStorage(key);
  },
  Clear: () => {
    return wx.clearStorage();
  }
};

使用封装

import Storage from "./common/auth/Storage";
const storage = Storage.get("userData");
if (!storage) {
	return that.login_register();
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM