1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import Cookies from 'js-cookie';
- /**
- * window.localStorage 浏览器永久缓存
- * @method set 设置永久缓存
- * @method get 获取永久缓存
- * @method remove 移除永久缓存
- * @method clear 移除全部永久缓存
- */
- export const Local = {
- // 设置永久缓存
- set(key: string, val: any) {
- window.localStorage.setItem(key, JSON.stringify(val));
- },
- // 获取永久缓存
- get(key: string) {
- let json = <string>window.localStorage.getItem(key);
- return JSON.parse(json);
- },
- // 移除永久缓存
- remove(key: string) {
- window.localStorage.removeItem(key);
- },
- // 移除全部永久缓存
- clear() {
- window.localStorage.clear();
- },
- };
- /**
- * window.sessionStorage 浏览器临时缓存
- * @method set 设置临时缓存
- * @method get 获取临时缓存
- * @method remove 移除临时缓存
- * @method clear 移除全部临时缓存
- */
- export const Session = {
- // 设置临时缓存
- set(key: string, val: any) {
- if (key === 'token') return Cookies.set(key, val);
- window.sessionStorage.setItem(key, JSON.stringify(val));
- },
- // 获取临时缓存
- get(key: string) {
- if (key === 'token') return Cookies.get(key);
- let json = <string>window.sessionStorage.getItem(key);
- return JSON.parse(json);
- },
- // 移除临时缓存
- remove(key: string) {
- if (key === 'token') return Cookies.remove(key);
- window.sessionStorage.removeItem(key);
- },
- // 移除全部临时缓存
- clear() {
- Cookies.remove('token');
- window.sessionStorage.clear();
- },
- };
|