http协议修改js或html,web前端面试题对答篇:HTTP fetch发送2次请求的原因?

web前端面试题对答篇:HTTP fetch发送2次请求的原因?

2020-08-31 04:36:44 289 编程开发

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 server

3、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—————

分享结束!喜欢本文的朋友们,欢迎关注公众号 张培跃,收看更多精彩内容,谢过!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值