axios加cookie
时间: 2023-02-14 19:26:21 浏览: 133
axios-cookiejar-support:添加对cookie的强力cookie支持
可以通过在axios请求配置中设置`withCredentials: true`来将cookie添加到请求中。
示例:
```javascript
axios({
method: 'get',
url: '/api/data',
withCredentials: true
}).then(response => {
console.log(response);
}).catch(error => {
console.log(error);
});
```
此外,在服务器端设置Access-Control-Allow-Credentials: true 或设置Access-Control-Allow-Origin为请求的域名,这样可以使服务器允许该请求发送cookie.
参考:
https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
https://github.com/axios/axios#cors
阅读全文