axios 配置 请求头
时间: 2023-10-13 21:02:51 浏览: 93
详解Vue-axios 设置请求头问题
5星 · 资源好评率100%
在Vue中使用axios发送请求时,可以通过设置请求头来携带token。具体步骤如下:
1. 在发送请求前,先获取token值。
2. 在axios的请求拦截器中,设置请求头,将token值添加到请求头中。
3. 在后端接收请求时,需要验证token的有效性,以确保请求的安全性。
示例代码如下:
```javascript
// 获取token值
const token = localStorage.getItem('token');
// 设置axios的请求拦截器
axios.interceptors.request.use(config => {
// 将token添加到请求头中
config.headers.Authorization = `Bearer ${token}`;
return config;
});
// 发送请求
axios.get('/api/user').then(res => {
console.log(res.data);
}).catch(err => {
console.log(err);
});
```
在上面的示例中,我们通过localStorage获取了token值,并将其添加到请求头中。在后端接收请求时,需要验证token的有效性,以确保请求的安全性。
阅读全文