local-cache-lyc
v1.0.8
Published
### 一个便捷调用本地缓存的工具(updating!)
Downloads
5
Readme
npm install local-cache-lyc
一个便捷调用本地缓存的工具(updating!)
import {setCache,getCache,getAllCache,clerCache} from 'local-cache-lyc'
setCache(string)需要传入本次缓存的对象的自定义 key 以及 value 会返回一个 Boolean 你可以通过他判断本次缓存是否成功
const isSave =setCache('key',value)=>return Boolean
getCache(string|['key','key2'])需要传入自定义缓存的 key 会返回一个 Js 对象 若传入数组其中任意一个 key 没有被找到则返回 false
example: getCache('key') return Object getCache(['key','key'])=>return Array
getAllCache()返回所有一个数组他们包含了你通过 setCache 缓存的所有数据
example: getAllCache() =>return <Array>[obj1,obj2]
clearCache(string?|['key','key2']?)
example: clearCache() => return Boolean (这样做的话你本地缓存将会被清空)
根据自身项目需求随便封装的方法,若发现有错误可结合源码二次修改