1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| /**
| * window.localStorage 浏览器永久缓存
| * @method set 设置永久缓存
| * @method get 获取永久缓存
| * @method remove 移除永久缓存
| * @method clear 移除全部永久缓存
| */
| const Local = {
| // 设置永久缓存
| set(key: string, val: any) {
| window.localStorage.setItem(key, JSON.stringify(val))
| },
| // 获取永久缓存
| get(key: string) {
| const value: null | string = window.localStorage.getItem(key) || null
| if (!value) return null
| return JSON.parse(value)
| },
| // 移除永久缓存
| remove(key: string) {
| window.localStorage.removeItem(key)
| },
| // 移除全部永久缓存
| clear() {
| window.localStorage.clear()
| },
| }
|
| /**
| * window.sessionStorage 浏览器临时缓存
| * @method set 设置临时缓存
| * @method get 获取临时缓存
| * @method remove 移除临时缓存
| * @method clear 移除全部临时缓存
| */
| const Session = {
| // 设置临时缓存
| set(key: string, val: any) {
| window.sessionStorage.setItem(key, JSON.stringify(val))
| },
| // 获取临时缓存
| get(key: string) {
| const value: null | string = window.sessionStorage.getItem(key)
|
| try {
| if (!value) return null
| return JSON.parse(value)
| } catch (error) {
| return value
| }
| },
| // 移除临时缓存
| remove(key: string) {
| window.sessionStorage.removeItem(key)
| },
| // 移除全部临时缓存
| clear() {
| window.sessionStorage.clear()
| },
| }
|
| export { Local, Session }
|
|