赞
踩
可以在发送 post 请求时,使用 axios 的 config 对象,在其中设置请求头的 Authorization 字段,将 Token 值作为其值即可。以下是示例代码:
复制- import axios from 'axios';
-
- const postData = async (data, token) => {
- try {
- const response = await axios.post('your-api-endpoint', data, {
- headers: {
- 'Authorization': `Bearer ${token}`,
- },
- });
- console.log(response.data);
- } catch (error) {
- console.error(error);
- }
- };
-
- // example usage
- const data = { /* your request data */ };
- const token = 'your-auth-token';
- postData(data, token);
注意:Bearer
必须要加上,表示该 Token 类型为 Bearer Token。同时请替换请求头中的 Authorization
字段与 Token 值,以符合您实际的情况。希望这可以帮到您!
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。