web前台面试题对答篇:HTTP fetch发送2次请求的起因?
HTTP fetch发送2次请求的起因?面对这道出现频率较高的面试题,我想说的是:发送两次请求的情况的确存在,但这与你所使用的是不是http协议,所采用的是不是fetch真的没有一毛钱关系!接下来,咱们可以通过代码逐个去验证……
一、准备工作
1、创立一个文件夹zhangpeiyue
2、在zhangpeiyue文件夹内创立两个文件:server.js与index.html
server.js:搭建一个express服务器,用于提供接口index.html:通过fetch调用接口。
二、前后台符合同源策略的场景
1、通过server.js创立服务:
const express = require("express");// 通过 body-parser 接收 post 过来的数据const bodyParser = require("body-parser");const app = express();// 接收 post 的数据为 application/json 格式app.use(bodyParser.json());// 将当前文件夹设置为静态资源app.use(express.static(__dirname));app.post("/my",(req,res)=>{ res.json({ ok:1, body:req.body// 将接收到的数据返回给前台 })});app.listen(80,(err)=>{ console.log("success");})2、启动服务
node server3、index.html嵌入js:
// 为避免出现缓存,添加 t 参数fetch("http://127.0.0.1/my?t="+Date.now(),{ method:"post", body:JSON.stringify({ a:1, b:2 }), headers:{ "content-type":"application/json" }}).then(res=>res.json()) .then(response=>console.log("Success:",response)) .catch(error=>console.log("Error",error))4、浏览器打开http://127.0.0.1测试

5、结论
- 在同源的情况下并未出现请求两次的情况
三、fetch在跨域的情况下
1、server.js修改如下:
const express = require("express");// 通过 body-parser 接收 post 过来的数据const bodyParser = require("body-parser");const app = express();// 接收 post 的数据为 application/json 格式app.use(bodyParser.json());// 将当前文件夹设置为静态资源app.use(express.static(__dirname));app.all("*",(req,res,next)=>{ console.log(req.method); res.set({ "Access-Control-Allow-Origin":"*", "Access-Control-Allow-Headers":"content-type" }) next();})app.post("/my",(req,res)=>{ res.json({ ok:1, body:req.body// 将接收到的数据返回给前台 })});app.listen(80,(err)=>{ console.log("success");})2、将前台content-type设置为application/json,而后通过开发工具的http方式在浏览器打开index.html,或者自己重新创立一个服务,在浏览器打开index.html。你会发现其果然请求了两次,分别为OPTIONS请求与POST请求:
// 为避免出现缓存,添加 t 参数fetch("http://127.0.0.1/my?t="+Date.now(),{ method:"post", body:JSON.stringify({ a:1, b:2 }), headers:{ "content-type":"application/json" }}).then(res=>res.json()) .then(response=>console.log("Success:",response)) .catch(error=>console.log("Error",error))- 请求方式:
OPTIONS
- 请求方式:
POST
3、将js代码中的content-type注释掉,而后在非同源的场景下再次访问,你会发现只发送了一次post请求。
// 为避免出现缓存,添加 t 参数fetch("http://127.0.0.1/my?t="+Date.now(),{ method:"post", body:JSON.stringify({ a:1, b:2 }), headers:{ // "content-type":"application/json" }}).then(res=>res.json()) .then(response=>console.log("Success:",response)) .catch(error=>console.log("Error",error))- 只发送了
post请求:
4、将content-type更改为application/x-www-form-urlencoded,再次访问,仍然只发送了一次POST请求:
// 为避免出现缓存,添加 t 参数fetch("http://127.0.0.1/my?t="+Date.now(),{ method:"post", body:JSON.stringify({ a:1, b:2 }), headers:{ "content-type":"application/x-www-form-urlencoded" }}).then(res=>res.json()) .then(response=>console.log("Success:",response)) .catch(error=>console.log("Error",error))- 只发送了
post请求:
5、将fetch改为XMLHttpRequest。将content-type设置为application/json。打开index.html,此时会请求两次,分别为OPTIONS请求与POST请求:
const xhr = new XMLHttpRequest();xhr.open("post","http://127.0.0.1/my?t="+Date.now());xhr.setRequestHeader("content-type","application/json")xhr.send(JSON.stringify({a:1,b:2}));xhr.onload = function () { console.log(xhr.responseText)}- 请求方式:
OPTIONS
- 请求方式:
POST
6、将配置content-type的代码注释掉,结果只发送了一次POST请求:
const xhr = new XMLHttpRequest();xhr.open("post","http://127.0.0.1/my?t="+Date.now());// xhr.setRequestHeader("content-type","application/json")xhr.send(JSON.stringify({a:1,b:2}));xhr.onload = function () { console.log(xhr.responseText)}- 请求方式:
POST
四、接口的协议为https:
1、server.js:
const express = require("express");// 通过 body-parser 接收 post 过来的数据const bodyParser = require("body-parser");const https = require("https");const fs = require("fs");const app = express();// 创立 https 服务,需要证书与密钥(需要有自己的域名)const httpsServer = https.createServer({ key:fs.readFileSync(__dirname+"/key/weixin.key"), cert:fs.readFileSync(__dirname+"/key/weixin.crt")},app)// 接收 post 的数据为 application/json 格式app.use(bodyParser.json());app.all("*",(req,res,next)=>{ console.log(req.method); res.set({ "Access-Control-Allow-Origin":"*" }) next();})app.post("/my",(req,res)=>{ res.json({ ok:1, body:req.body// 将接收到的数据返回给前台 })});httpsServer.listen(443,()=>{ console.log("httpsServer->success")})2、content-type设置为application/json,而后以http的形式打开页面。结果会请求两次,分别为OPTIONS请求与POST请求:
// 为避免出现缓存,添加 t 参数fetch("https://weixin.zhangpeiyue.com/my?t="+Date.now(),{ method:"post", body:JSON.stringify({ a:1, b:2 }), headers:{ "content-type":"application/json" }}).then(res=>res.json()) .then(response=>console.log("Success:",response)) .catch(error=>console.log("Error",error))- 请求方式:
OPTIONS
- 请求方式:
POST
五、总结
发送2次请求需要满足以下2个条件:
- 必需要在跨域的情况下。
- 除GET、HEAD和POST(only with application/x-www-form-urlencoded, multipart/form-data, text/plain Content-Type)以外的跨域请求(我们可以称为预检(Preflighted)的跨域请求)。
最后,建议大家可以这样回复面试官:之所以会发送2次请求,那是由于我们使用了带预检(Preflighted)的跨域请求。该请求会在发送真实的请求之前发送一个类型为OPTIONS的预检请求。预检请求会检测服务器能否支持我们的真实请求所需要的跨域资源,唯有资源满足条件才会发送真实的请求。比方我们在请求头部添加了authorization项,那么在服务器响应头中需要放入Access-Control-Allow-Headers,并且其值中必需要包含authorization,否则OPTIONS预检会失败,从而导致不会发送真实的请求。
—————END—————
分享结束!喜欢本文的朋友们,欢迎关注公众号 张培跃,收看更多精彩内容,谢过!!
说明
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » web前台面试题对答篇:HTTP fetch发送2次请求的起因?
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » web前台面试题对答篇:HTTP fetch发送2次请求的起因?