axios get 传header
时间: 2023-11-26 11:36:17 浏览: 125
vue axios数据请求get、post方法及实例详解
可以使用 Axios 的 `headers` 配置项来设置请求头。例如,如果想要发送一个带有 `Authorization` 头信息的 GET 请求,可以这样写:
```javascript
import axios from 'axios';
axios.get('https://example.com/api', {
headers: {
Authorization: 'Bearer <token>',
},
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
```
其中,`<token>` 是你的身份验证令牌。在上面的示例中,我们将一个包含 `Authorization` 头信息的对象传递给了 `headers` 配置项。Axios 会在发送请求时将这些头信息附加到请求中。
阅读全文