react中携带token参数
时间: 2024-05-24 13:04:31 浏览: 141
在 React 中,可以使用 axios 或 fetch 等 HTTP 请求库来向后端发送请求并携带 token 参数。通常情况下,我们需要在每个请求中手动添加 Authorization 头部,其值为 Bearer 加上 token 值。
以下是一个使用 axios 发送请求并携带 token 参数的示例代码:
```javascript
import axios from 'axios';
const token = 'your_token_value';
axios.get('https://example.com/api/data', {
headers: {
Authorization: `Bearer ${token}`
}
}).then(response => {
console.log(response.data);
}).catch(error => {
console.error(error);
});
```
在上面的示例中,我们使用 axios 发送了一个 GET 请求,并在请求头中添加了 Authorization 头部,其值为 Bearer 加上 token 值。需要注意的是,实际使用中需要替换掉 token 变量的值为真实的 token 值。
阅读全文