我正在尝试在 Laravel 中使用 VueJS 进行 POST 请求,但请求失败并显示 401 状态码,我将令牌传递到标头中,但它不起作用。
const post_data = {
headers: {
Authorization: [api token]
},
params: {
[parameters]
}
}
axios
.post('URL', post_data)
.then(res => console.log(res))
我正在尝试在 Laravel 中使用 VueJS 进行 POST 请求,但请求失败并显示 401 状态码,我将令牌传递到标头中,但它不起作用。
const post_data = {
headers: {
Authorization: [api token]
},
params: {
[parameters]
}
}
axios
.post('URL', post_data)
.then(res => console.log(res))