API
api列举
fetch
基本使用
fetch(url, {
//请求方法,默认为GET
method: 'post',
//HTTP的请求头
headers: {
'Content-Type': 'application/json'
},
//请求参数
body: JSON.stringify({some: 'content'}),
credentials: 'omit' //默认为omit,忽略的意思,也就是不带cookie;include,表示无论跨域还是同源请求都会带cookie;same-origin,意思就是同源请求带cookie
}).then(res => {
// handle HTTP response
}, err => {
// handle network error
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Service Worker
https://github.com/Leslie2014/blog/issues/1