likeshop/uniapp/utils/cache.js

42 lines
761 B
JavaScript
Raw Normal View History

2024-08-15 11:06:13 +08:00
const Cache = {
//设置缓存(expire为缓存时效)
set(key, value, expire) {
2024-08-15 11:06:13 +08:00
let data = {
expire: expire ? (this.time() + expire) : "",
value
}
2024-08-15 11:06:13 +08:00
if (typeof data === 'object')
data = JSON.stringify(data);
try {
uni.setStorageSync(key, data)
} catch (e) {
return false;
}
},
get(key) {
try {
let data = uni.getStorageSync(key)
const {value, expire} = JSON.parse(data)
if(expire && expire < this.time()) {
uni.removeStorageSync(key)
return false;
}else {
return value
2024-08-15 11:06:13 +08:00
}
} catch (e) {
return false;
}
},
//获取当前时间
time() {
return Math.round(new Date() / 1000);
},
remove(key) {
if(key) uni.removeStorageSync(key)
2024-08-15 11:06:13 +08:00
}
}
export default Cache;