一、localStorage
localStorage 是本地缓存
1. 简单封装
typescript
/**
* 存储数据
*/
export const setItem = (key: string, value: any) => {
// value 分为两种情况
// 1. 基本数据类型
// 2. 复杂数据类型
if (typeof value === 'object') {
value = JSON.stringify(value);
}
localStorage.setItem(key, value)
}
/**
* 获取数据
*/
export const getItem = (key: string) => {
const data = localStorage.getItem(key) || '';
try {
return JSON.parse(data);
} catch (err) {
return data;
}
}
/**
* 删除指定数据
*/
export const removeItem = (key: string) => {
localStorage.removeItem(key)
}
/**
* 删除所有数据
*/
export const removeAllItem = () => {
localStorage.clear()
}