我将使用以下代码发送承载令牌:
import axios from 'axios';
const token = localStorage.getItem('token');
export const HTTP = axios.create({
baseURL: `http://localhost/rocourt/01-Backend/api/v1/public/`,
headers: {
'Content-Type': 'application/json',
"Authorization": "Bearer " + token
}
});
我使用以下代码调用该路线:
HTTP.get("adresses")
.then(response => {
// JSON responses are automatically parsed.
this.posts = response.data
})
.catch(e => {
this.errors.push(e)
})
},
问题是我总是从后端获得401错误状态。因为我的中间件找不到承载令牌。 (CORS之类的东西没有问题)
我试图去检查是否可以看到来自Google检查工具的请求,但看不到。但是,当我从邮递员那里进行操作时,可以看到我的标题在这里。