扩展Taro 的前端本地存储
安装
npm i taro-storage
使用
import storage from 'taro-storage' ### 获取会话内存储的值 storage.getSessionStorage ### 写入会话内缓存 storage.setSessionStorage ### 移除会话内的单个存储 storage.removeSessionStorage ###本地永久存储,写入有效期,有效期内会取出来,失效后会清空 storage.setLocalStorage ###本地取出存储的值 storage.getLocalStorage ###本地删除存储 storage.removeLocalStorage ###移除本地所有的过期的缓存