我试图在Laravel中使用VueJS进行POST请求,但是该请求失败,并显示401状态代码,我将令牌传递到标头中,但是它不起作用。
const post_data = {
headers: {
Authorization: [api token]
},
params: {
[parameters]
}
}
axios
.post('URL', post_data)
.then(res => console.log(res))
答案 0 :(得分:0)
Authorization: "Bearer " + token or Authorization: "bearer " + token
在某些情况下,仅上述一种有效!