-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 2.06 KB
/
index.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTTP Cache</title>
<style>
*{
margin: 0;
padding: 0;
line-height: 2;
list-style-type: none;
font-family: '楷体';
}
body {
padding: 10px 20px;
}
table {
width: 50%;
font-size: 14px;
border-collapse: collapse;
}
caption {
font-size: 20px;
}
img {
width: 50px;
vertical-align: top;
}
</style>
</head>
<body>
<table border="1">
<caption>http cache</caption>
<thead>
<tr>
<td>响应头</td>
<td>请求资源</td>
<td>请求类型</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>Expires: Thu, 01 Jan 2099 15:59:59 GMT</p>
</td>
<td><img src="./images/01.jpg" alt=""></td>
<td>强缓存</td>
</tr>
<tr>
<td>
<p>Cache-Control: max-age=5</p>
</td>
<td><img src="./images/02.jpg" alt=""></td>
<td>强缓存</td>
</tr>
<tr>
<td>
<p>Cache-Control: no-cache</p>
<p>last-modified: Sun, 06 Jun 2021 02:37:52 GMT</p>
</td>
<td><img src="./images/03.jpg" alt=""></td>
<td>协商缓存</td>
</tr>
<tr>
<td>
<p>Cache-Control: no-cache</p>
<p>etag: "14be0-ub9DuZspap5Z3f93ckEiWsRdVvQ"</p>
</td>
<td><img src="./images/04.jpg" alt=""></td>
<td>协商缓存</td>
</tr>
</tbody>
</table>
</body>
</html>