# 1. 前言
在实际项目开发中,前端代码和后端代码往往是跑在两个不同的端口上,前端的请求要访问后端的api
,就成了跨端口请求,也就是跨域请求。而浏览器为了安全起见,会根据同源策略禁止这种跨域请求。在同域的情况下,我们发送请求会默认携带当前域下的 cookie
,但是在跨域的情况下,由于浏览器的限制,默认是不会携带请求域下的 cookie
,而我们通常请求中是需要携带cookie
的,这就需要在XMLHttpRequest
对象上配置withCredentials
属性,将其设置为true
即可,官方的axios
在请求配置对象中为我们提供了设置这一属性的选项,接下来,我们也要在我们的axios
中提供这一选项。
添加这一选项非常简单,我们只需在请求配置对象config
中加上该属性,然后在发送请求时判断是否配置了该属性,如果配置了我们就在XMLHttpRequest
对象上将该属性进行配置即可。
OK,接下来,我们就来实现它。
# 2. 修改 AxiosRequestConfig
给请求配置对象config
中添加withCredentials
属性之前,我们需要先在src/types/index.ts
中的配置对象的接口类型定义AxiosRequestConfig
上添加该属性的定义,如下:
export interface AxiosRequestConfig {
// 新增
withCredentials?: boolean;
}
2
3
4
# 3. 添加请求判断逻辑
接口定义好之后,我们只需在发送请求之前,判断用户是否配置了该属性,如果配置了,就把配置的属性值添加到XMLHttpRequest
对象上即可,我们修改src/core.xhr.ts
中的xhr
函数,如下:
const { /*...*/ withCredentials } = config;
if (withCredentials) {
request.withCredentials = true;
}
2
3
4
5
OK,这样withCredentials
属性配置选项就添加好了,接下来,我们就编写demo
来看看效果。
# 4. demo 编写
在 examples
目录下创建 addWithCredentials
目录,在 addWithCredentials
目录下创建 index.html
:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>addWithCredentials demo</title>
</head>
<body>
<script src="/__build__/addWithCredentials.js"></script>
</body>
</html>
2
3
4
5
6
7
8
9
10
接着再创建 app.ts
作为入口文件:
import axios from "../../src/axios";
axios.post("http://192.168.1.2:3000/api/addWithCredentials", {}).then((res) => {
console.log(res);
});
axios
.post(
"http://192.168.1.2:3000/api/addWithCredentials",
{},
{
withCredentials: true,
}
)
.then((res) => {
console.log(res);
});
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
在本demo
中,我们发送两个请求,一个请求配置了withCredentials
属性,一个没有。理想情况下,没有配置withCredentials
属性的请求就携带不了cookie
,自然也就接收不到服务端返回的cookie
内容;而配置了withCredentials
属性的请求可以携带cookie
,那么它就可以收到服务端返回的cookie
内容。后面我们可以通过结果来验证现在的猜测。
接着在 server/server.js
添加新的接口路由:
// 添加withCredentials
const cookieParser = require("cookie-parser");
app.use(cookieParser());
const cors = {
"Access-Control-Allow-Origin": "http://192.168.1.2:8000",
"Access-Control-Allow-Credentials": true,
"Access-Control-Allow-Methods": "POST, GET, PUT, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type",
};
router.post("/api/addWithCredentials", function(req, res) {
res.set(cors);
res.json(req.cookies);
});
router.options("/api/addWithCredentials", function(req, res) {
res.set(cors);
res.end();
});
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
此处切记一定要配置两个路由接口,除了post
还有加一个options
,这是因为cors
跨域对于非简单请求浏览器会先发送一个options
类型的请求来预检请求,具体原因请看这里! (opens new window)
这里需要安装一下 cookie-parser
插件,用于请求发送的 cookie
。
另外,为了形式跨域请求,我们还需要把webpack.config.js
文件中配置的webpack
跨域代理配置注释掉,如下:
devServer: {
noInfo: true,
overlay: true,
open: true
// proxy: { // 配置跨域
// '/api/': {
// target: 'http://192.168.1.2:3000',
// ws: true,
// changOrigin: true
// },
// }
}
2
3
4
5
6
7
8
9
10
11
12
最后在根目录下的index.html
中加上启动该demo
的入口:
<li><a href="examples/addWithCredentials">addWithCredentials</a></li>
OK,我们在命令行中执行:
# 同时开启客户端和服务端
npm run server | npm start
2
接着我们打开 chrome
浏览器,访问 http://localhost:8000/ (opens new window) 即可访问我们的 demo
了,我们点击 addWithCredentials
,通过F12
的 network
部分我们可以看到:两条请求已经正常发出了,但是两个请求返回的data
都为空,这是因为我们还没有写cookie
内容呢,按照下图中的方式写入cookie
后,在刷新页面发送请求,我们就可以看到没有配置withCredentials
属性的请求返回的data
仍旧为空{}
,而配置了withCredentials
属性的请求返回的data
已经有携带的cookie
内容了。
OK,添加withCredentials
属性的功能我们就已经实现了。