JavaScript fetch接口

114次阅读

共计 2696 个字符,预计需要花费 7 分钟才能阅读完成。

JavaScript fetch 接口
如果看网上的 fetch 教程,会首先对比 XMLHttpRequest 和 fetch 的优劣,然后引出一堆看了很快会忘记的内容 (本人记性不好)。因此,我写一篇关于 fetch 的文章,为了自己看着方便,毕竟工作中用到的也就是一些很基础的点而已。
fetch,说白了,就是 XMLHttpRequest 的一种替代方案。如果有人问你,除了 Ajax 获取后台数据之外,还有没有其他的替代方案?
这是你就可以回答,除了 XMLHttpRequest 对象来获取后台的数据之外,还可以使用一种更优的解决方案 fetch。
fetch 的案例
下面我们来写第一个 fetch 获取后端数据的例子:
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html’) // 返回一个 Promise 对象
.then((res)=>{
return res.text() // res.text() 是一个 Promise 对象
})
.then((res)=>{
console.log(res) // res 是最终的结果
})

GET 请求
GET 请求初步
完成了 helloworld,这个时候就要来认识一下 GET 请求如何处理了。
上面的 helloworld 中这是使用了第一个参数,其实 fetch 还可以提供第二个参数,就是用来传递一些初始化的信息。
这里如果要特别指明是 GET 请求,就要写成下面的形式:
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html’, {
method: ‘GET’
})
.then((res)=>{
return res.text()
})
.then((res)=>{
console.log(res)
})
GET 请求的参数传递
GET 请求中如果需要传递参数怎么办?这个时候,只能把参数写在 URL 上来进行传递了。
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html?a=1&b=2’, { // 在 URL 中写上传递的参数
method: ‘GET’
})
.then((res)=>{
return res.text()
})
.then((res)=>{
console.log(res)
})
POST 请求
与 GET 请求类似,POST 请求的指定也是在 fetch 的第二个参数中:
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html’, {
method: ‘POST’ // 指定是 POST 请求
})
.then((res)=>{
return res.text()
})
.then((res)=>{
console.log(res)
})
POST 请求参数的传递
众所周知,POST 请求的参数,一定不能放在 URL 中,这样做的目的是防止信息泄露。
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html’, {
method: ‘POST’,
body: new URLSearchParams([[“foo”, 1],[“bar”, 2]]).toString() // 这里是请求对象
})
.then((res)=>{
return res.text()
})
.then((res)=>{
console.log(res)
})
设置请求的头信息
在 POST 提交的过程中,一般是表单提交,可是,经过查询,发现默认的提交方式是:Content-Type:text/plain;charset=UTF-8,这个显然是不合理的。下面咱们学习一下,指定头信息:
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html’, {
method: ‘POST’,
headers: new Headers({
‘Content-Type’: ‘application/x-www-form-urlencoded’ // 指定提交方式为表单提交
}),
body: new URLSearchParams([[“foo”, 1],[“bar”, 2]]).toString()
})
.then((res)=>{
return res.text()
})
.then((res)=>{
console.log(res)
})
这个时候,在谷歌浏览器的 Network 中查询,会发现,请求方式已经变成了 content-type:application/x-www-form-urlencoded。
通过接口得到 JSON 数据
上面所有的例子中都是返回一个文本,那么除了文本,有没有其他的数据类型呢?肯定是有的,具体查询地址:Body 的类型
由于最常用的是 JSON 数据,那么下面就简单演示一下获取 JSON 数据的方式:
fetch(‘https://www.baidu.com/rec?platform=wise&ms=1&rset=rcmd&word=123&qid=11327900426705455986&rq=123&from=844b&baiduid=A1D0B88941B30028C375C79CE5AC2E5E%3AFG%3D1&tn=&clientWidth=375&t=1506826017369&r=8255’, { // 在 URL 中写上传递的参数
method: ‘GET’,
headers: new Headers({
‘Accept’: ‘application/json’ // 通过头指定,获取的数据类型是 JSON
})
})
.then((res)=>{
return res.json() // 返回一个 Promise,可以解析成 JSON
})
.then((res)=>{
console.log(res) // 获取 JSON 数据
})
强制带 Cookie
默认情况下, fetch 不会从服务端发送或接收任何 cookies, 如果站点依赖于维护一个用户会话,则导致未经认证的请求 (要发送 cookies,必须发送凭据头).
// 通过 fetch 获取百度的错误提示页面
fetch(‘https://www.baidu.com/search/error.html’, {
method: ‘GET’,
credentials: ‘include’ // 强制加入凭据头
})
.then((res)=>{
return res.text()
})
.then((res)=>{
console.log(res)
})

正文完
 0