Files

10 lines
198 B
JavaScript
Raw Permalink Normal View History

2026-06-05 14:06:20 +08:00
// 写入某个key到缓存
export function setCache(key, value) {
uni.setStorageSync(key, value)
}
// 获取某个key的缓存
export function getCache(key) {
return uni.getStorageSync(key)
}