2021-06-19 17:49:42 +08:00
|
|
|
/**
|
|
|
|
* window.localStorage 浏览器永久缓存
|
|
|
|
* @method set 设置永久缓存
|
|
|
|
* @method get 获取永久缓存
|
|
|
|
* @method remove 移除永久缓存
|
|
|
|
* @method clear 移除全部永久缓存
|
|
|
|
*/
|
2021-05-27 21:01:41 +08:00
|
|
|
export const Local = {
|
|
|
|
// 设置永久缓存
|
|
|
|
set(key: string, val: any) {
|
|
|
|
window.localStorage.setItem(key, JSON.stringify(val));
|
|
|
|
},
|
|
|
|
// 获取永久缓存
|
|
|
|
get(key: string) {
|
|
|
|
let json: any = window.localStorage.getItem(key);
|
|
|
|
return JSON.parse(json);
|
|
|
|
},
|
|
|
|
// 移除永久缓存
|
|
|
|
remove(key: string) {
|
|
|
|
window.localStorage.removeItem(key);
|
|
|
|
},
|
|
|
|
// 移除全部永久缓存
|
|
|
|
clear() {
|
|
|
|
window.localStorage.clear();
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-06-19 17:49:42 +08:00
|
|
|
/**
|
|
|
|
* window.sessionStorage 浏览器临时缓存
|
|
|
|
* @method set 设置临时缓存
|
|
|
|
* @method get 获取临时缓存
|
|
|
|
* @method remove 移除临时缓存
|
|
|
|
* @method clear 移除全部临时缓存
|
|
|
|
*/
|
2021-05-27 21:01:41 +08:00
|
|
|
export const Session = {
|
|
|
|
// 设置临时缓存
|
|
|
|
set(key: string, val: any) {
|
|
|
|
window.sessionStorage.setItem(key, JSON.stringify(val));
|
|
|
|
},
|
|
|
|
// 获取临时缓存
|
|
|
|
get(key: string) {
|
|
|
|
let json: any = window.sessionStorage.getItem(key);
|
|
|
|
return JSON.parse(json);
|
|
|
|
},
|
|
|
|
// 移除临时缓存
|
2021-05-27 21:26:45 +08:00
|
|
|
remove(key: string) {
|
2021-05-27 21:01:41 +08:00
|
|
|
window.sessionStorage.removeItem(key);
|
|
|
|
},
|
|
|
|
// 移除全部临时缓存
|
|
|
|
clear() {
|
|
|
|
window.sessionStorage.clear();
|
|
|
|
},
|
|
|
|
};
|